Skip to content

Commit 7664a4f

Browse files
committed
remove unneccessary brackes
1 parent 0ef51ec commit 7664a4f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • Sprint-2/2-mandatory-debug

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
// The correct code:
1919

2020
function multiply(a, b) {
21-
return(a * b);
21+
return a * b;
2222
}
23-
2423
console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);

0 commit comments

Comments
 (0)