Skip to content

Commit 86b27be

Browse files
authored
Fix return statement for addition in 1.js
1 parent 50d2aea commit 86b27be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Sprint-2/2-mandatory-debug

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ console.log(`The sum of 10 and 32 is ${sum(10, 32)}`);
1515

1616
// Finally, correct the code to fix the problem
1717
// =============> write your new code here
18-
// [ChunYanWong] return (a+b);
18+
// [ChunYanWong] return a+b;

0 commit comments

Comments
 (0)