├── .gitignore ├── 01-tudo-e-objeto ├── index.html └── script.js ├── 02-arrow-function ├── index.html └── script.js ├── 03-destructuring ├── index.html └── script.js ├── 04-spread-e-rest ├── index.html └── script.js ├── 05-module ├── Circulo.js ├── index.html ├── numeroAleatorio.js ├── quadrado.js └── script.js ├── 06-fetch ├── index.html └── script.js ├── 07-async-await ├── index.html └── script.js ├── 08-array-map-filter-reduce ├── index.html └── script.js ├── 09-expressoes ├── index.html └── script.js └── 10-class ├── index.html └── script.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /01-tudo-e-objeto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/01-tudo-e-objeto/index.html -------------------------------------------------------------------------------- /01-tudo-e-objeto/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/01-tudo-e-objeto/script.js -------------------------------------------------------------------------------- /02-arrow-function/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/02-arrow-function/index.html -------------------------------------------------------------------------------- /02-arrow-function/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/02-arrow-function/script.js -------------------------------------------------------------------------------- /03-destructuring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/03-destructuring/index.html -------------------------------------------------------------------------------- /03-destructuring/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/03-destructuring/script.js -------------------------------------------------------------------------------- /04-spread-e-rest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/04-spread-e-rest/index.html -------------------------------------------------------------------------------- /04-spread-e-rest/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/04-spread-e-rest/script.js -------------------------------------------------------------------------------- /05-module/Circulo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/05-module/Circulo.js -------------------------------------------------------------------------------- /05-module/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/05-module/index.html -------------------------------------------------------------------------------- /05-module/numeroAleatorio.js: -------------------------------------------------------------------------------- 1 | export default function numeroAleatorio() { 2 | return Math.random(); 3 | } 4 | -------------------------------------------------------------------------------- /05-module/quadrado.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/05-module/quadrado.js -------------------------------------------------------------------------------- /05-module/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/05-module/script.js -------------------------------------------------------------------------------- /06-fetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/06-fetch/index.html -------------------------------------------------------------------------------- /06-fetch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/06-fetch/script.js -------------------------------------------------------------------------------- /07-async-await/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/07-async-await/index.html -------------------------------------------------------------------------------- /07-async-await/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/07-async-await/script.js -------------------------------------------------------------------------------- /08-array-map-filter-reduce/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/08-array-map-filter-reduce/index.html -------------------------------------------------------------------------------- /08-array-map-filter-reduce/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/08-array-map-filter-reduce/script.js -------------------------------------------------------------------------------- /09-expressoes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/09-expressoes/index.html -------------------------------------------------------------------------------- /09-expressoes/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/09-expressoes/script.js -------------------------------------------------------------------------------- /10-class/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/10-class/index.html -------------------------------------------------------------------------------- /10-class/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origamid/javascript-antes-do-framework/HEAD/10-class/script.js --------------------------------------------------------------------------------