Skip to content

Commit 53dae43

Browse files
problem 44 all solved
1 parent 2e680b2 commit 53dae43

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

problem44/problem44.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,13 @@ const aboutDeveloper = `I am a web developer.
3333
I love to code.
3434
I love to eat biryani.`;
3535

36-
console.log(aboutDeveloper);
36+
console.log(aboutDeveloper);
37+
38+
39+
/* Task Three: */
40+
41+
const sum = (a, b = 375) => a + b ;
42+
43+
const totalOf = sum(1000);
44+
console.log(totalOf);
45+

0 commit comments

Comments
 (0)