JavaScript Objects - Advanced
Advanced Learning Path:
Step 1
Object Definitions
Using an Object Literal
Using the new Keyword
Using an Object Constructor
Using Object.assign()
Using Object.create()
Using Object.fromEntries()
Step 3
Object Iterations
Object.entries(object)
Object.keys(object)
Object.values(object)
Object.groupBy(object, callback)
Step 4
Object Get & Set
Getters and setters allow you to define Object Accessors (Computed Properties).
Step 6
Object Protection
Prevents changes to an object
Prevents adding properties
Prevents deleting properties