js object variable code example

Example 1: javascript object

var	person = {
	first_name : "Marty",
  	last_name : "Mcfly",
	born : 1968,
	died : 1933,
    lovers: ["Jennifer Parker","Baines McFly"]
};

Example 2: creating an object javascript

let obj = {
// fields
  name:"value",
  num: 123,
//methods
  foo: function(){}
  
}

Example 3: 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 4: js objects

//initialized object
var object = {
  property1: "a", 
  property2: "b",
}

//object initializer function
function object(property1, property2)
{
	this.property1 = property1;
  	this.property2 = property2;
}

//initializing using the initializer function
var mouse = new object("ab", "cd");

Tags:

Java Example