├── README.md └── notes ├── array-api.js ├── array.js ├── async ├── async.js ├── callback-to-promise.js ├── callback.js └── promise.js ├── class.js ├── es6-11 ├── es11.js └── es6.js ├── function.js ├── index.html ├── json.js ├── object.js ├── operator.js ├── pro-tips ├── async.js ├── loops.js ├── nullish-coalescing.js ├── object-destructuring.js ├── optional-chaining.js ├── quiz.js ├── spread-syntax-array.js ├── spread-syntax-object.js ├── template-literals.js └── ternary-operator.js └── variable.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/README.md -------------------------------------------------------------------------------- /notes/array-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/array-api.js -------------------------------------------------------------------------------- /notes/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/array.js -------------------------------------------------------------------------------- /notes/async/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/async/async.js -------------------------------------------------------------------------------- /notes/async/callback-to-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/async/callback-to-promise.js -------------------------------------------------------------------------------- /notes/async/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/async/callback.js -------------------------------------------------------------------------------- /notes/async/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/async/promise.js -------------------------------------------------------------------------------- /notes/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/class.js -------------------------------------------------------------------------------- /notes/es6-11/es11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/es6-11/es11.js -------------------------------------------------------------------------------- /notes/es6-11/es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/es6-11/es6.js -------------------------------------------------------------------------------- /notes/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/function.js -------------------------------------------------------------------------------- /notes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/index.html -------------------------------------------------------------------------------- /notes/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/json.js -------------------------------------------------------------------------------- /notes/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/object.js -------------------------------------------------------------------------------- /notes/operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/operator.js -------------------------------------------------------------------------------- /notes/pro-tips/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/async.js -------------------------------------------------------------------------------- /notes/pro-tips/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/loops.js -------------------------------------------------------------------------------- /notes/pro-tips/nullish-coalescing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/nullish-coalescing.js -------------------------------------------------------------------------------- /notes/pro-tips/object-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/object-destructuring.js -------------------------------------------------------------------------------- /notes/pro-tips/optional-chaining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/optional-chaining.js -------------------------------------------------------------------------------- /notes/pro-tips/quiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/quiz.js -------------------------------------------------------------------------------- /notes/pro-tips/spread-syntax-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/spread-syntax-array.js -------------------------------------------------------------------------------- /notes/pro-tips/spread-syntax-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/spread-syntax-object.js -------------------------------------------------------------------------------- /notes/pro-tips/template-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/template-literals.js -------------------------------------------------------------------------------- /notes/pro-tips/ternary-operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/pro-tips/ternary-operator.js -------------------------------------------------------------------------------- /notes/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dream-ellie/learn-javascript/HEAD/notes/variable.js --------------------------------------------------------------------------------