-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03.js
More file actions
38 lines (29 loc) · 838 Bytes
/
03.js
File metadata and controls
38 lines (29 loc) · 838 Bytes
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
let comapany01 = {
name : "Cyber24BD",
suscriber : 500,
tagline : "An Educational Channel.",
content : {
programming : "JavaScript",
software : "VS code editor",
view : 100,
},
}
comapany01.adress = "Dhaka, BD"
comapany01.suscriber = 5000
console.log(comapany01.tagline)
console.log(comapany01.suscriber)
console.log(comapany01["name"])
console.log(comapany01)
console.log(comapany01.content.software)
console.log(Object.keys(comapany01.content))
console.log(Object.values(comapany01))
let info01 = `Hi this is ${comapany01.name}, Adress : ${comapany01.adress}`
console.log(info01)
let company02 = new Object();
company02.name = "Toamun";
company02.type = "Page";
company02.like = 400;
company02.password = 123;
Object.freeze(company02)
company02.password = 423;
console.log(company02)