Ingrese items:
44 |Lista de compras:
102 |Cant. | 106 |Medida | 107 |Descripción | 108 |
---|
112 |
├── 01_prompt ├── index.html └── inicio.js ├── 02_prompt_condicional ├── index.html └── inicio.js ├── 03_contador ├── css │ └── style.css ├── img │ └── contador.jpg ├── index.html └── js │ └── script.js ├── 04_ciclos ├── index.html └── script.js ├── 05_desafio_complementario_1 ├── index.html └── script.js ├── 06_funciones ├── index.html └── script.js ├── 07_funciones_flecha ├── index.html └── script.js ├── 08_desafio_entregable_1_simulador ├── css │ └── style.css ├── index.html ├── script.js └── svg │ └── undraw_medicine_b-1-ol.svg ├── 09_FizzBuzz ├── css │ └── style.css ├── index.html └── script.js ├── 10_objetos ├── index.html └── script2.js ├── 11_arrays ├── index.html └── script.js ├── 13_Desafio_Complementario_incorporar_arrays ├── css │ └── style.css ├── index.html ├── script.js └── svg │ ├── undraw_empty_cart_co35.svg │ ├── undraw_medicine_b-1-ol.svg │ └── undraw_wishlist_re_m7tv.svg ├── 14_funciones_orden_superior ├── index.html └── script.js ├── 15_Lista_pendientes ├── css │ └── style.css ├── index.html └── script.js ├── 16_DOM ├── css │ └── style.css ├── index.html └── script.js ├── 17_Eventos └── script.js ├── 18_Desafio_Complementario_Eventos ├── css │ └── style.css ├── index.html └── script.js ├── 19_Storage_&_JSON ├── data.js └── script.js ├── 20_Anio_bisiesto ├── bisiesto.png ├── index.html ├── main.js └── style.css ├── CODING.gif └── README.md /01_prompt/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |Este es un ejemplo de uso de javascript con bootstrap 5, 21 | para simular un contador manual de personas
22 |90 | REFERENCIAS: 91 | 92 | Prospecto BENADRYL 94 | Prospecto FEBRATIC 96 | Prospecto VENTOLIN 98 |
99 | En esta practica, se genera una sucesion de numeros consecutivos, cumpliendo las siguientes condiciones:
28 |
33 | Aplicación para generar listas de compras e imprimirlas 34 |
35 |Ingrese items:
44 |Lista de compras:
102 |Cant. | 106 |Medida | 107 |Descripción | 108 |
---|
24 | Aplicación para generar listas de pendientes 25 |
26 |Tarea N° 1
48 |