File tree Expand file tree Collapse file tree 2 files changed +80
-0
lines changed
Expand file tree Collapse file tree 2 files changed +80
-0
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments