├── .gitignore ├── README.md ├── SUMMARY.md ├── advanced └── generator.md ├── assets ├── closure_1.png ├── promise_1.png ├── prototype_1.png ├── prototype_2.png └── prototype_3.png ├── book.json ├── changelog.md ├── cover.jpg ├── cover_small.jpg ├── intro.md ├── issue.md ├── jquery.md ├── part1 ├── README.md ├── future.md └── history.md ├── part2 ├── README.md ├── debug.md ├── es6_env.md ├── output.md ├── tools.md └── unit_test.md ├── part3 ├── README.md ├── array.md ├── controlflow.md ├── datatype.md ├── datetime.md ├── error.md ├── function_scope.md ├── loop.md ├── object.md └── var_const_naming.md ├── part4 ├── README.md ├── ajax_fetch.md ├── arrow_function.md ├── callback.md ├── callback_old.md ├── closure.md ├── destructuring.md ├── event.md ├── eventloop.md ├── json.md ├── module_system.md ├── promise.md ├── promise_nouse.md ├── prototype.md ├── rest_spread.md └── this.md ├── part5 ├── README.md ├── comp_symbol.md └── keyword.md ├── style.md └── styles ├── pdf.css ├── print.css └── website.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | misc 3 | .vscode/settings.json 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /advanced/generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/advanced/generator.md -------------------------------------------------------------------------------- /assets/closure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/assets/closure_1.png -------------------------------------------------------------------------------- /assets/promise_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/assets/promise_1.png -------------------------------------------------------------------------------- /assets/prototype_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/assets/prototype_1.png -------------------------------------------------------------------------------- /assets/prototype_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/assets/prototype_2.png -------------------------------------------------------------------------------- /assets/prototype_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/assets/prototype_3.png -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/book.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # 更新日誌 2 | 3 | 請參考github中的更新說明。 4 | 5 | ### 160606 6 | 7 | - 開始上傳電子書。 8 | -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/intro.md -------------------------------------------------------------------------------- /issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/issue.md -------------------------------------------------------------------------------- /jquery.md: -------------------------------------------------------------------------------- 1 | https://github.com/camsong/blog/issues/4 2 | -------------------------------------------------------------------------------- /part1/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part1/future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part1/future.md -------------------------------------------------------------------------------- /part1/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part1/history.md -------------------------------------------------------------------------------- /part2/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part2/debug.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part2/es6_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part2/es6_env.md -------------------------------------------------------------------------------- /part2/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part2/output.md -------------------------------------------------------------------------------- /part2/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part2/tools.md -------------------------------------------------------------------------------- /part2/unit_test.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part3/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part3/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/array.md -------------------------------------------------------------------------------- /part3/controlflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/controlflow.md -------------------------------------------------------------------------------- /part3/datatype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/datatype.md -------------------------------------------------------------------------------- /part3/datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/datetime.md -------------------------------------------------------------------------------- /part3/error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/error.md -------------------------------------------------------------------------------- /part3/function_scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/function_scope.md -------------------------------------------------------------------------------- /part3/loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/loop.md -------------------------------------------------------------------------------- /part3/object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/object.md -------------------------------------------------------------------------------- /part3/var_const_naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part3/var_const_naming.md -------------------------------------------------------------------------------- /part4/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part4/ajax_fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/ajax_fetch.md -------------------------------------------------------------------------------- /part4/arrow_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/arrow_function.md -------------------------------------------------------------------------------- /part4/callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/callback.md -------------------------------------------------------------------------------- /part4/callback_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/callback_old.md -------------------------------------------------------------------------------- /part4/closure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/closure.md -------------------------------------------------------------------------------- /part4/destructuring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/destructuring.md -------------------------------------------------------------------------------- /part4/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/event.md -------------------------------------------------------------------------------- /part4/eventloop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/eventloop.md -------------------------------------------------------------------------------- /part4/json.md: -------------------------------------------------------------------------------- 1 | #JSON 2 | 3 | https://jeremywsherman.com/blog/2016/07/23/why-im-meh-about-json-api/ -------------------------------------------------------------------------------- /part4/module_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/module_system.md -------------------------------------------------------------------------------- /part4/promise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/promise.md -------------------------------------------------------------------------------- /part4/promise_nouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/promise_nouse.md -------------------------------------------------------------------------------- /part4/prototype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/prototype.md -------------------------------------------------------------------------------- /part4/rest_spread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/rest_spread.md -------------------------------------------------------------------------------- /part4/this.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part4/this.md -------------------------------------------------------------------------------- /part5/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /part5/comp_symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/part5/comp_symbol.md -------------------------------------------------------------------------------- /part5/keyword.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/style.md -------------------------------------------------------------------------------- /styles/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyesofkids/javascript-entry-level-es6/HEAD/styles/pdf.css -------------------------------------------------------------------------------- /styles/print.css: -------------------------------------------------------------------------------- 1 | /* CSS for print */ 2 | -------------------------------------------------------------------------------- /styles/website.css: -------------------------------------------------------------------------------- 1 | /* CSS for website */ 2 | h1 , h2{ 3 | border-bottom: 1px solid #EFEAEA; 4 | } 5 | --------------------------------------------------------------------------------