Skip to content

Commit c74f8a2

Browse files
authored
Update 0.js
1 parent 1e55d56 commit c74f8a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Sprint-2/2-mandatory-debug

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ function multiply(a, b) {
66
console.log(a * b);
77
}
88

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

1111
// =============> write your explanation here
1212
// The function printed the answer but did't return it, so when it was used in the template string, it came out as 'undefined.'

0 commit comments

Comments
 (0)