Skip to content

Commit 54ca144

Browse files
committed
add changes to 2-mandatory-debug/0.js
1 parent 2bf3487 commit 54ca144

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}
1313
// Finally, correct the code to fix the problem
1414
// =============> write your new code here
1515
function multiply(a, b) {
16-
return a * b; // Once I put a * b on the same line as return, it worked
16+
return a * b;
1717
}
1818
1919
console.log(` The sum of 10 and 32 is ${sum(10, 32)}`);

0 commit comments

Comments
 (0)