├── 01-desestructuracion ├── index.html └── js │ └── main.js ├── 02-modulos ├── capitalizar.js ├── dist │ └── main.js ├── index.html ├── main.js ├── package-lock.json ├── package.json └── src │ ├── capitalizar.js │ └── index.js ├── 03-spread_rest └── spread-rest.js ├── 04-classes └── clasess.js ├── 05-promises └── promises.js ├── 06-fetch ├── fetch.js └── index.html ├── 07-async-await └── async-await.js ├── 08-mejores-objetos ├── index.html └── mejores-objetos.js ├── 09-for-of-iterables ├── index.html └── iterables-looping.js ├── 10-mejores-matrices ├── index.html ├── mejores-matrices.js └── users.js ├── 11-parametros-defecto ├── index.html └── parametros-defecto.js ├── 12-mejores-numeros ├── index.html └── mejores-numeros.js ├── 13-sets ├── sets.js └── test.js ├── 14-maps └── maps.js ├── 15-mejores-strings ├── index.html └── mejores-strings.js ├── 16-arrow-functions └── arrow-functions.js └── 17-nuevas-variables └── nuevas-variables.js /01-desestructuracion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |