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 0771dcc commit 45967b9Copy full SHA for 45967b9
Sprint-2/2-mandatory-debug/0.js
@@ -2,13 +2,18 @@
2
3
// =============> write your prediction here
4
5
-function multiply(a, b) {
6
- console.log(a * b);
7
-}
+// function multiply(a, b) {
+// console.log(a * b);
+// }
8
9
-console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);
+// console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);
10
11
// =============> write your explanation here
12
13
// Finally, correct the code to fix the problem
14
// =============> write your new code here
15
+function multiply(a, b) {
16
+ return a * b;
17
+}
18
+
19
+console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}`);
0 commit comments