Object Methods
Objects can contain functions, called methods, and JavaScript provides useful built-in methods for working with objects.
Methods in Objects
Loading JavaScript Playground...
Object.keys(), values(), entries()
Loading JavaScript Playground...
Object.assign() and Spread
Loading JavaScript Playground...
Object.freeze() and Object.seal()
Loading JavaScript Playground...
Shorthand Properties
Loading JavaScript Playground...
Exercise: Object Methods
Create an object with a method:
Loading JavaScript Exercise...
Exercise: Get Keys
Get and print all keys from an object:
Loading JavaScript Exercise...

