Skip to content

Commit b639581

Browse files
committed
Comment out the lines of code with the error
1 parent 09df5e9 commit b639581

File tree

1 file changed

+5
-5
lines changed
  • Sprint-2/2-mandatory-debug

1 file changed

+5
-5
lines changed

Sprint-2/2-mandatory-debug/1.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
// Therefore, any console.log using sum(10, 32) will display `undefined` in the output.
99

1010

11-
function sum(a, b) {
12-
return;
13-
a + b;
14-
}
11+
//function sum(a, b) {
12+
//return;
13+
//a + b;
14+
//}
1515

16-
console.log(`The sum of 10 and 32 is ${sum(10, 32)}`);
16+
//console.log(`The sum of 10 and 32 is ${sum(10, 32)}`);
1717

1818
// =============> write your explanation here
1919
// Explanation

0 commit comments

Comments
 (0)