-
Notifications
You must be signed in to change notification settings - Fork 0
/
obj.js
54 lines (44 loc) · 999 Bytes
/
obj.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// object concept in javascript
// object contain oop features of javascript
console.log("first thing: \n");
const obj =
{
myName: "ketan sondarva",
age: 17,
// first way to write function in js
getData: function() {
console.log(obj.myName);
console.log("age: "+obj.age+"\n");
}
}
obj.getData();
console.log("\nsecond thing: \n");
const obj1 =
{
myName: "ketan sondarva",
age: 17,
// second way to write function in js
getData() {
console.log(obj.myName);
console.log("age: "+obj.age+"\n");
}
}
obj1.getData();
// objects in object:
console.log("\nthird thing: \n");
const obj2 =
{
// this is nested object
myName :
{
firstName: " sondarva",
lastName: " ketan"
},
age: 17,
getData() {
console.log("my first name:"+obj2.myName.firstName);
console.log("my last name:"+obj2.myName.lastName);
console.log("age: "+obj.age+"\n");
}
}
obj2.getData();