├── 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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/01-desestructuracion/index.html -------------------------------------------------------------------------------- /01-desestructuracion/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/01-desestructuracion/js/main.js -------------------------------------------------------------------------------- /02-modulos/capitalizar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/capitalizar.js -------------------------------------------------------------------------------- /02-modulos/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/dist/main.js -------------------------------------------------------------------------------- /02-modulos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/index.html -------------------------------------------------------------------------------- /02-modulos/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/main.js -------------------------------------------------------------------------------- /02-modulos/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/package-lock.json -------------------------------------------------------------------------------- /02-modulos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/package.json -------------------------------------------------------------------------------- /02-modulos/src/capitalizar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/src/capitalizar.js -------------------------------------------------------------------------------- /02-modulos/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/02-modulos/src/index.js -------------------------------------------------------------------------------- /03-spread_rest/spread-rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/03-spread_rest/spread-rest.js -------------------------------------------------------------------------------- /04-classes/clasess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/04-classes/clasess.js -------------------------------------------------------------------------------- /05-promises/promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/05-promises/promises.js -------------------------------------------------------------------------------- /06-fetch/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/06-fetch/fetch.js -------------------------------------------------------------------------------- /06-fetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/06-fetch/index.html -------------------------------------------------------------------------------- /07-async-await/async-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/07-async-await/async-await.js -------------------------------------------------------------------------------- /08-mejores-objetos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/08-mejores-objetos/index.html -------------------------------------------------------------------------------- /08-mejores-objetos/mejores-objetos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/08-mejores-objetos/mejores-objetos.js -------------------------------------------------------------------------------- /09-for-of-iterables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/09-for-of-iterables/index.html -------------------------------------------------------------------------------- /09-for-of-iterables/iterables-looping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/09-for-of-iterables/iterables-looping.js -------------------------------------------------------------------------------- /10-mejores-matrices/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/10-mejores-matrices/index.html -------------------------------------------------------------------------------- /10-mejores-matrices/mejores-matrices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/10-mejores-matrices/mejores-matrices.js -------------------------------------------------------------------------------- /10-mejores-matrices/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/10-mejores-matrices/users.js -------------------------------------------------------------------------------- /11-parametros-defecto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/11-parametros-defecto/index.html -------------------------------------------------------------------------------- /11-parametros-defecto/parametros-defecto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/11-parametros-defecto/parametros-defecto.js -------------------------------------------------------------------------------- /12-mejores-numeros/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/12-mejores-numeros/index.html -------------------------------------------------------------------------------- /12-mejores-numeros/mejores-numeros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/12-mejores-numeros/mejores-numeros.js -------------------------------------------------------------------------------- /13-sets/sets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/13-sets/sets.js -------------------------------------------------------------------------------- /13-sets/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/13-sets/test.js -------------------------------------------------------------------------------- /14-maps/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/14-maps/maps.js -------------------------------------------------------------------------------- /15-mejores-strings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/15-mejores-strings/index.html -------------------------------------------------------------------------------- /15-mejores-strings/mejores-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/15-mejores-strings/mejores-strings.js -------------------------------------------------------------------------------- /16-arrow-functions/arrow-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/16-arrow-functions/arrow-functions.js -------------------------------------------------------------------------------- /17-nuevas-variables/nuevas-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanwmedia/javascript-moderno/HEAD/17-nuevas-variables/nuevas-variables.js --------------------------------------------------------------------------------