Skip to content

Commit 5cbb8bc

Browse files
authored
Update 0.js
1 parent c74f8a2 commit 5cbb8bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • Sprint-2/2-mandatory-debug

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

Lines changed: 2 additions & 2 deletions
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 multiply 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.'
@@ -16,5 +16,5 @@ console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);
1616
return a * b;
1717
}
1818

19-
console.log(`The result of multipying 10 and 32 is ${multiply(10, 32)}`);
19+
console.log(`The result of multipy 10 and 32 is ${multiply(10, 32)}`);
2020

0 commit comments

Comments
 (0)