-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjects-access.js
57 lines (46 loc) · 1.16 KB
/
objects-access.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
55
56
57
/*const a=10;
function f(){
if(true){
const a=9;
//console.log(a);
//console.log(a);
}
console.log(a);
console.log(a);
}
//console.log(a);
//console.log(a);
f();*/
/* HOW TO ACCESS OBJECTS In DIFFERENT WAYS */
const object1 = {
a: 'somestring',
b: 42
};
/* use this to get values */
//for(const o in object1){
//console.log(object1[o])
//}; //prints somestring and 42
/* use this to get the keys */
//for(const o in object1){
//console.log(o);
//} //prints a and b
/* use this to get the key value pairs */
//for (const [key, value] of Object.entries(object1)) {
//console.log(`${key}: ${value}`);
//} //prints k:v
/* use this to get the array of key value pairs */
//console.log(Object.entries(object1)); //prints [...]
//forkeys:-
//console.log(Object.keys(object1));
//for values:-
//console.log(Object.values(object1));
/* use this to get the keys */
//for(const key of Object.keys(object1)){
//console.log(`${key}`)
//}; //prints a and b
/* use this to get the values */
//for(const value of Object.values(object1)){
//console.log(`${value}`)
//}; prints somestring and 42
//console.log(object1.a); //somestring
//console.log(object1.b); //42