Skip to content

Commit 52a1b76

Browse files
Remove unnecessary parentheses in multiply function
1 parent f98c27d commit 52a1b76

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
@@ -32,7 +32,7 @@ console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);
3232
// As a result, the correct value is displayed instead of undefined.
3333
// =============> write your new code here
3434
function multiply(a, b) {
35-
return (a * b);
35+
return a * b;
3636

3737
}
3838

0 commit comments

Comments
 (0)