Checklist progress
0/168Learned
JavaScript Developer
Study Checklist
Checklist progress
0/168Learned
Given a business requirement, locate the best function implementation.
0/8
Given a business requirement, apply fundamentals of object implementation to solve the business requirement.
0/12
Given a business requirement, apply fundamentals of class implementation to solve the business requirement.
0/7
Given a JavaScript module, give examples of how to use the module.
0/6
ES module syntax: named exports versus default exports
Learn this conceptImporting a default export and the difference from named import syntax
Learn this conceptImporting named exports with destructuring syntax and renaming with 'as'
Learn this conceptCommonJS module syntax (require/module.exports) versus ES module syntax (import/export)
Learn this conceptDynamic import() for lazy loading modules and its Promise-based return
Learn this conceptGiven a JavaScript decorator, give examples of how to use the decorator.
0/3
Given a block of code, analyze the variable scope and the execution flow.
0/4
Prepare for the Exam
Study Community
Ask questions and get the latest info from other JavaScript Developer studiers. 593 members and growing.
Modules organize code into logical chunks that are easier to read and maintain. Named exports allow specific variables or functions to be shared between files using the import statement. You can rename these imports locally using the as keyword to use different variable names within your code.