-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproblem23.js
More file actions
48 lines (21 loc) · 695 Bytes
/
problem23.js
File metadata and controls
48 lines (21 loc) · 695 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
39
40
41
42
43
44
45
46
47
48
/* pizza নামের একটা object কে নিচের উদাহরণ মতো define করবা :
const pizza = {
toppings: ['cheese', 'sauce', 'pepperoni'],
crust: 'deep dish',
serves: 2
}
এবং pepperoni প্রিন্ট করবা।
///////////////////////////////////////////////////////////////////
Define an object named pizza as in the following example:
const pizza = {
toppings: ['cheese', 'sauce', 'pepperoni'],
crust: 'deep dish',
Serves: 2
}
and print pepperoni. */
const pizza = {
toppings: ['cheese', 'sauce', 'pepperoni'],
crust: 'deep dish',
Serves: 2
};
console.log(pizza.toppings[2]);