how to define object javascript code example

Example 1: js object

let car = {
  		name: "BMW",
  		colour: "black",
  		year: "2020",
  		owner: {
		names = ["Andy" , "Steve" , "Tony" ]
		}
};

Example 2: js objects

// To make an object literal:
const dog = {
    name: "Rusty",
    breed: "unknown",
    isAlive: false,
    age: 7
}
// All keys will be turned into strings!

// To retrieve a value:
dog.age; //7
dog["age"]; //7

//updating values
dog.breed = "mutt";
dog["age"] = 8;

Example 3: objects javascript

function Dog() {
  this.name = "Bailey"; 
  this.colour = "Golden"; 
  this.breed = "Golden Retriever";
  this.age = 8;
}

Example 4: objects in javascript

var object = {'key':'value','the value can be anything',[1,null,'Dr.Hippo']};

Example 5: how to create a object in javascript

var a = {
name: "aakash",
  age:30
}

Tags:

Java Example