Skip to content

Commit 6547770

Browse files
committed
corrected for unnecessary brackets
1 parent 7664a4f commit 6547770

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
@@ -17,7 +17,7 @@
1717
// The correct code:
1818

1919
function sum(a, b) {
20-
return (a + b);
20+
return a + b;
2121
}
2222

2323
console.log(`The sum of 10 and 32 is ${sum(10, 32)}`);

0 commit comments

Comments
 (0)