Skip to content

Commit 8d0bb83

Browse files
committed
removed the unnecessary brackets
1 parent e0d3cbf commit 8d0bb83

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
@@ -25,7 +25,7 @@
2525
// I will add a return statement to the function multiply that returns the result of multiplying a and b.
2626

2727
function multiply(a, b) {
28-
return (a * b);
28+
return a * b;
2929
}
3030

3131
console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);

0 commit comments

Comments
 (0)