We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74f8a2 commit 5cbb8bcCopy full SHA for 5cbb8bc
1 file changed
Sprint-2/2-mandatory-debug/0.js
@@ -6,7 +6,7 @@ function multiply(a, b) {
6
console.log(a * b);
7
}
8
9
-console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);
+console.log(`The result of multiply 10 and 32 is ${multiply(10, 32)}`);
10
11
// =============> write your explanation here
12
// 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)}`);
16
return a * b;
17
18
19
-console.log(`The result of multipying 10 and 32 is ${multiply(10, 32)}`);
+console.log(`The result of multipy 10 and 32 is ${multiply(10, 32)}`);
20
0 commit comments