Skip to content

Commit c4fd2c7

Browse files
problem 44 initialization done
1 parent d4827c3 commit c4fd2c7

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.vscode/settings.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"cSpell.words": [
3+
"biryani"
4+
]
5+
}

problem44/problem.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
## Practice Problem 44
3+
4+
1. Write an arrow function that will take **3** parameters, will multiply
5+
the parameters and will return the result.
6+
7+
2. Write the following sentence in **three lines** and print the result:
8+
**I am a web developer. I love to code. I love to eat biryani.**
9+
10+
3. Write an arrow function that will take **2** parameters: One parameter
11+
will come from you and the other parameter will be a default
12+
parameter. Add these two parameters and return the result.
13+
14+
15+
16+
17+
18+
problem source: https://drive.google.com/file/d/1Ut8t4Ed8V-U0Axtz4nbIXJhmxvMEMUe9/view?usp=sharing

problem44/problem44.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* ## Practice Problem 44
2+
3+
1. Write an arrow function that will take **3** parameters, will multiply
4+
the parameters and will return the result.
5+
6+
2. Write the following sentence in **three lines** and print the result:
7+
**I am a web developer. I love to code. I love to eat biryani.**
8+
9+
3. Write an arrow function that will take **2** parameters: One parameter
10+
will come from you and the other parameter will be a default
11+
parameter. Add these two parameters and return the result.
12+
13+
14+
15+
16+
17+
problem source: https://drive.google.com/file/d/1Ut8t4Ed8V-U0Axtz4nbIXJhmxvMEMUe9/view?usp=sharing */

0 commit comments

Comments
 (0)