Skip to content

Commit e91ea36

Browse files
problem 23 completed
1 parent 900a234 commit e91ea36

File tree

2 files changed

+80
-0
lines changed

2 files changed

+80
-0
lines changed

problem23/problem.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
pizza নামের একটা object কে নিচের উদাহরণ মতো define করবা :
2+
3+
4+
5+
const pizza = {
6+
7+
toppings: ['cheese', 'sauce', 'pepperoni'],
8+
9+
crust: 'deep dish',
10+
11+
serves: 2
12+
13+
}
14+
15+
এবং pepperoni প্রিন্ট করবা।
16+
17+
///////////////////////////////////////////////////////////////////
18+
Define an object named pizza as in the following example:
19+
20+
21+
22+
const pizza = {
23+
24+
toppings: ['cheese', 'sauce', 'pepperoni'],
25+
26+
crust: 'deep dish',
27+
28+
Serves: 2
29+
30+
}
31+
32+
and print pepperoni.

problem23/problem23.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/* pizza নামের একটা object কে নিচের উদাহরণ মতো define করবা :
2+
3+
4+
5+
const pizza = {
6+
7+
toppings: ['cheese', 'sauce', 'pepperoni'],
8+
9+
crust: 'deep dish',
10+
11+
serves: 2
12+
13+
}
14+
15+
এবং pepperoni প্রিন্ট করবা।
16+
17+
///////////////////////////////////////////////////////////////////
18+
Define an object named pizza as in the following example:
19+
20+
21+
22+
const pizza = {
23+
24+
toppings: ['cheese', 'sauce', 'pepperoni'],
25+
26+
crust: 'deep dish',
27+
28+
Serves: 2
29+
30+
}
31+
32+
and print pepperoni. */
33+
34+
35+
36+
37+
const pizza = {
38+
39+
toppings: ['cheese', 'sauce', 'pepperoni'],
40+
41+
crust: 'deep dish',
42+
43+
Serves: 2
44+
45+
};
46+
47+
console.log(pizza.toppings[2]);
48+

0 commit comments

Comments
 (0)