object inside an object javascript code example
Example 1: function inside object javascript
var obj = {
func: function(a, b) {
return a * b;
}
};
obj.func(3, 6);
Example 2: object object javascript
person = {
'name':'john smith'
'age':41
};
console.log(person);
console.log(JSON.stringify(person));
Example 3: object inside object javascript
var obj = {
prop1: 5,
obj2: {
prop1: [3, 6, 3],
prop2: 74,
prop3: {
str: "Hello World"
}
}
};
console.log(obj.obj2.prop3.str);
Example 4: adding function to objects js
var myObj = {
myFunc: function(param){
}
}
Example 5: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}