├── .gitignore ├── aggregate.html ├── class-module.html ├── default-and-named.html ├── default-class.html ├── default-function.html ├── default-variable.html ├── dynamic-module.html ├── index.html ├── module-object.html ├── multiple.html ├── scripts ├── aggregate.js ├── alert.js ├── class.js ├── default-and-named.js ├── default-class.js ├── default-variable.js ├── library.js ├── module-object.js ├── multiple.js ├── multiple2.js ├── say-hello.js ├── say.js ├── variable.js └── variable2.js ├── variable-module.html ├── with-module.html └── without-module.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /aggregate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/aggregate.html -------------------------------------------------------------------------------- /class-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/class-module.html -------------------------------------------------------------------------------- /default-and-named.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/default-and-named.html -------------------------------------------------------------------------------- /default-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/default-class.html -------------------------------------------------------------------------------- /default-function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/default-function.html -------------------------------------------------------------------------------- /default-variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/default-variable.html -------------------------------------------------------------------------------- /dynamic-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/dynamic-module.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/index.html -------------------------------------------------------------------------------- /module-object.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/module-object.html -------------------------------------------------------------------------------- /multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/multiple.html -------------------------------------------------------------------------------- /scripts/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/aggregate.js -------------------------------------------------------------------------------- /scripts/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/alert.js -------------------------------------------------------------------------------- /scripts/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/class.js -------------------------------------------------------------------------------- /scripts/default-and-named.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/default-and-named.js -------------------------------------------------------------------------------- /scripts/default-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/default-class.js -------------------------------------------------------------------------------- /scripts/default-variable.js: -------------------------------------------------------------------------------- 1 | 2 | export default name = "Eko"; 3 | -------------------------------------------------------------------------------- /scripts/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/library.js -------------------------------------------------------------------------------- /scripts/module-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/module-object.js -------------------------------------------------------------------------------- /scripts/multiple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/multiple.js -------------------------------------------------------------------------------- /scripts/multiple2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/multiple2.js -------------------------------------------------------------------------------- /scripts/say-hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/say-hello.js -------------------------------------------------------------------------------- /scripts/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/scripts/say.js -------------------------------------------------------------------------------- /scripts/variable.js: -------------------------------------------------------------------------------- 1 | 2 | export const name = "Eko Kurniawan Khannedy"; 3 | -------------------------------------------------------------------------------- /scripts/variable2.js: -------------------------------------------------------------------------------- 1 | export const name = "Joko"; 2 | -------------------------------------------------------------------------------- /variable-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/variable-module.html -------------------------------------------------------------------------------- /with-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/with-module.html -------------------------------------------------------------------------------- /without-module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-javascript-modules/HEAD/without-module.html --------------------------------------------------------------------------------