🎯 What you'll learn: How to create and work with JavaScript objects — the foundation of almost every JS program. You'll master object literals, dot and bracket notation, methods, this, destructuring, spread, JSON, optional chaining, and Object utility methods.
1-B 2-B 3-A 4-B | 5 key 6 city 7 = const book={title:'JS', pages:120}; 8 = book['pages'] 9 = for(const k of Object.keys(book)) console.log(k) | 10 = Dynamic keys or keys with spaces/dashes