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
ES6 class declaration syntax: constructor, instance methods, and creating instances with new
Learn this conceptClass inheritance with extends and super() for calling the parent constructor and parent methods
Learn this conceptGetters and setters in classes using get and set keywords
Learn this conceptGiven a JavaScript module, give examples of how to use the module.
0/6
Given 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.
Private class fields use the `#` prefix syntax to declare fields, methods, and accessors that are strictly accessible only within the class body. Unlike the old underscore convention, this encapsulation is enforced by JavaScript itself at the syntax level, not by convention.