Reduce Revision - (Day 11 - Reduce Revision)

In JavaScript, Objects are King.(Day 12)

If you Understand Objects, you Understand JavaScript.

Objects

Objects are key value pair. eg.

const person = {name: "Ram", age: 30, location: "Kathmandu", height: 6};

Task - Create any two objects that you like, but dont make it very simple one like {one: 1, two: 2}. Try to think as it it is useful in real world.

How to create and empty object - 2 ways

const fruit = {};
const car = new Object();

What are object properties ?