├── .gitignore ├── 2 Objects ├── 10-enumerating-properties.js ├── 11-abstraction.js ├── 12-private-properties-and-methods.js ├── 13-getters-and-setters.js ├── 3-object-literals.js ├── 4-factory-functions.js ├── 5-constructor-functions.js ├── 6-constructor-property.js ├── 7-functions-are-objects.js ├── 8-value-vs-reference-types.js └── 9-adding-or-removing-properties.js ├── 3 Prototypes ├── 2-prototypes-and-prototypical-inheritance.js ├── 3-multilevel-inheritance.js ├── 4-property-descriptors.js ├── 5-constructor-prototypes.js ├── 6-prototype-vs-instance-members.js ├── 7-iterating-instance-and-prototype-members.js └── 8-avoid-extending-the-built-in-objects.js ├── 4 Prototypical Inheritance ├── 1-creating-your-own-prototypical-inheritance.js ├── 2-resetting-the-constructor.js ├── 3-calling-the-super-constructor.js ├── 4-intermediate-function-inheritance.js ├── 5-method-overriding.js ├── 6-polymorphism.js ├── 7-when-to-use-inheritance.js └── 8-mixins.js ├── 5 ES6 Classes ├── 1-es6-classes.js ├── 2-hoisting.js ├── 3-static-methods.js ├── 4-the-this-keyword.js ├── 5-private-members-using-symbols.js ├── 6-private-members-using-weakmaps.js ├── 7-getters-and-setters.js ├── 8-inheritance.js └── 9-method-overriding.js ├── 6 ES6 Tooling ├── 2-commonJS-module │ ├── Programmer.js │ └── index.js └── 3-es6-modules │ └── lesson │ ├── Programmer.js │ ├── ProgrammerSkills.js │ ├── index.html │ └── index.js ├── 7 Node Module System ├── 10-path-module │ └── 10-path-module.js ├── 11-os-module │ └── 11-os-module.js ├── 12-file-system-module │ └── 12-file-system-module.js ├── 13-events-module │ └── 13-events-module.js ├── 14-event-arguments │ └── 14-event-arguments.js ├── 15-custom-class-eventemitter │ ├── app.js │ └── logger.js ├── 16-http-module │ ├── express.js │ └── lesson.js ├── 4-intro-to-node-module-system │ ├── index.js │ └── utility.js ├── 5-global-object │ └── 5-global-object.js ├── 6-modules │ └── 6-modules.js ├── 7-creating-a-module │ └── 7-creating-a-module.js ├── 8-loading-a-module │ ├── index.js │ └── logger.js └── 9-module-wrapper-function │ └── 9-module-wrapper-function.js ├── 8 Node Package Manager ├── 3-installing-a-node-package.js ├── 4-package-dependencies.js ├── 5-using-a-package.js └── new-lib │ ├── index.js │ └── package.json ├── 9 Asynchronous JavaScript ├── 1-synchronous-vs-asynchronous-code.js ├── 10-running-promises-in-parallel.js ├── 11-async-and-await.js ├── 2-patterns-for-dealing-with-asynchronous-code.js ├── 3-callbacks.js ├── 4-callback-hell.js ├── 5-named-functions.js ├── 6-promises.js ├── 7-replacing-callbacks-with-promises.js ├── 8-consuming-promises.js └── 9-creating-settled-promises.js └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | */node_modules/ 2 | .vscode -------------------------------------------------------------------------------- /2 Objects/10-enumerating-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/10-enumerating-properties.js -------------------------------------------------------------------------------- /2 Objects/11-abstraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/11-abstraction.js -------------------------------------------------------------------------------- /2 Objects/12-private-properties-and-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/12-private-properties-and-methods.js -------------------------------------------------------------------------------- /2 Objects/13-getters-and-setters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/13-getters-and-setters.js -------------------------------------------------------------------------------- /2 Objects/3-object-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/3-object-literals.js -------------------------------------------------------------------------------- /2 Objects/4-factory-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/4-factory-functions.js -------------------------------------------------------------------------------- /2 Objects/5-constructor-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/5-constructor-functions.js -------------------------------------------------------------------------------- /2 Objects/6-constructor-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/6-constructor-property.js -------------------------------------------------------------------------------- /2 Objects/7-functions-are-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/7-functions-are-objects.js -------------------------------------------------------------------------------- /2 Objects/8-value-vs-reference-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/8-value-vs-reference-types.js -------------------------------------------------------------------------------- /2 Objects/9-adding-or-removing-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/2 Objects/9-adding-or-removing-properties.js -------------------------------------------------------------------------------- /3 Prototypes/2-prototypes-and-prototypical-inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/3 Prototypes/2-prototypes-and-prototypical-inheritance.js -------------------------------------------------------------------------------- /3 Prototypes/3-multilevel-inheritance.js: -------------------------------------------------------------------------------- 1 | let myArray = []; -------------------------------------------------------------------------------- /3 Prototypes/4-property-descriptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/3 Prototypes/4-property-descriptors.js -------------------------------------------------------------------------------- /3 Prototypes/5-constructor-prototypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/3 Prototypes/5-constructor-prototypes.js -------------------------------------------------------------------------------- /3 Prototypes/6-prototype-vs-instance-members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/3 Prototypes/6-prototype-vs-instance-members.js -------------------------------------------------------------------------------- /3 Prototypes/7-iterating-instance-and-prototype-members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/3 Prototypes/7-iterating-instance-and-prototype-members.js -------------------------------------------------------------------------------- /3 Prototypes/8-avoid-extending-the-built-in-objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/3 Prototypes/8-avoid-extending-the-built-in-objects.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/1-creating-your-own-prototypical-inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/1-creating-your-own-prototypical-inheritance.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/2-resetting-the-constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/2-resetting-the-constructor.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/3-calling-the-super-constructor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/3-calling-the-super-constructor.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/4-intermediate-function-inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/4-intermediate-function-inheritance.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/5-method-overriding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/5-method-overriding.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/6-polymorphism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/6-polymorphism.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/7-when-to-use-inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/7-when-to-use-inheritance.js -------------------------------------------------------------------------------- /4 Prototypical Inheritance/8-mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/4 Prototypical Inheritance/8-mixins.js -------------------------------------------------------------------------------- /5 ES6 Classes/1-es6-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/1-es6-classes.js -------------------------------------------------------------------------------- /5 ES6 Classes/2-hoisting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/2-hoisting.js -------------------------------------------------------------------------------- /5 ES6 Classes/3-static-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/3-static-methods.js -------------------------------------------------------------------------------- /5 ES6 Classes/4-the-this-keyword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/4-the-this-keyword.js -------------------------------------------------------------------------------- /5 ES6 Classes/5-private-members-using-symbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/5-private-members-using-symbols.js -------------------------------------------------------------------------------- /5 ES6 Classes/6-private-members-using-weakmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/6-private-members-using-weakmaps.js -------------------------------------------------------------------------------- /5 ES6 Classes/7-getters-and-setters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/7-getters-and-setters.js -------------------------------------------------------------------------------- /5 ES6 Classes/8-inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/8-inheritance.js -------------------------------------------------------------------------------- /5 ES6 Classes/9-method-overriding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/5 ES6 Classes/9-method-overriding.js -------------------------------------------------------------------------------- /6 ES6 Tooling/2-commonJS-module/Programmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/6 ES6 Tooling/2-commonJS-module/Programmer.js -------------------------------------------------------------------------------- /6 ES6 Tooling/2-commonJS-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/6 ES6 Tooling/2-commonJS-module/index.js -------------------------------------------------------------------------------- /6 ES6 Tooling/3-es6-modules/lesson/Programmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/6 ES6 Tooling/3-es6-modules/lesson/Programmer.js -------------------------------------------------------------------------------- /6 ES6 Tooling/3-es6-modules/lesson/ProgrammerSkills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/6 ES6 Tooling/3-es6-modules/lesson/ProgrammerSkills.js -------------------------------------------------------------------------------- /6 ES6 Tooling/3-es6-modules/lesson/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/6 ES6 Tooling/3-es6-modules/lesson/index.html -------------------------------------------------------------------------------- /6 ES6 Tooling/3-es6-modules/lesson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/6 ES6 Tooling/3-es6-modules/lesson/index.js -------------------------------------------------------------------------------- /7 Node Module System/10-path-module/10-path-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/10-path-module/10-path-module.js -------------------------------------------------------------------------------- /7 Node Module System/11-os-module/11-os-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/11-os-module/11-os-module.js -------------------------------------------------------------------------------- /7 Node Module System/12-file-system-module/12-file-system-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/12-file-system-module/12-file-system-module.js -------------------------------------------------------------------------------- /7 Node Module System/13-events-module/13-events-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/13-events-module/13-events-module.js -------------------------------------------------------------------------------- /7 Node Module System/14-event-arguments/14-event-arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/14-event-arguments/14-event-arguments.js -------------------------------------------------------------------------------- /7 Node Module System/15-custom-class-eventemitter/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/15-custom-class-eventemitter/app.js -------------------------------------------------------------------------------- /7 Node Module System/15-custom-class-eventemitter/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/15-custom-class-eventemitter/logger.js -------------------------------------------------------------------------------- /7 Node Module System/16-http-module/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/16-http-module/express.js -------------------------------------------------------------------------------- /7 Node Module System/16-http-module/lesson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/16-http-module/lesson.js -------------------------------------------------------------------------------- /7 Node Module System/4-intro-to-node-module-system/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/4-intro-to-node-module-system/index.js -------------------------------------------------------------------------------- /7 Node Module System/4-intro-to-node-module-system/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/4-intro-to-node-module-system/utility.js -------------------------------------------------------------------------------- /7 Node Module System/5-global-object/5-global-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/5-global-object/5-global-object.js -------------------------------------------------------------------------------- /7 Node Module System/6-modules/6-modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/6-modules/6-modules.js -------------------------------------------------------------------------------- /7 Node Module System/7-creating-a-module/7-creating-a-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/7-creating-a-module/7-creating-a-module.js -------------------------------------------------------------------------------- /7 Node Module System/8-loading-a-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/8-loading-a-module/index.js -------------------------------------------------------------------------------- /7 Node Module System/8-loading-a-module/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/7 Node Module System/8-loading-a-module/logger.js -------------------------------------------------------------------------------- /7 Node Module System/9-module-wrapper-function/9-module-wrapper-function.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /8 Node Package Manager/3-installing-a-node-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/8 Node Package Manager/3-installing-a-node-package.js -------------------------------------------------------------------------------- /8 Node Package Manager/4-package-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/8 Node Package Manager/4-package-dependencies.js -------------------------------------------------------------------------------- /8 Node Package Manager/5-using-a-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/8 Node Package Manager/5-using-a-package.js -------------------------------------------------------------------------------- /8 Node Package Manager/new-lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/8 Node Package Manager/new-lib/index.js -------------------------------------------------------------------------------- /8 Node Package Manager/new-lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/8 Node Package Manager/new-lib/package.json -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/1-synchronous-vs-asynchronous-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/1-synchronous-vs-asynchronous-code.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/10-running-promises-in-parallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/10-running-promises-in-parallel.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/11-async-and-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/11-async-and-await.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/2-patterns-for-dealing-with-asynchronous-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/2-patterns-for-dealing-with-asynchronous-code.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/3-callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/3-callbacks.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/4-callback-hell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/4-callback-hell.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/5-named-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/5-named-functions.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/6-promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/6-promises.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/7-replacing-callbacks-with-promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/7-replacing-callbacks-with-promises.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/8-consuming-promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/8-consuming-promises.js -------------------------------------------------------------------------------- /9 Asynchronous JavaScript/9-creating-settled-promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/9 Asynchronous JavaScript/9-creating-settled-promises.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenGarciaDev/JavaScript-Pro-Finished-Course/HEAD/README.md --------------------------------------------------------------------------------