Skip to content

Commit 36242ed

Browse files
mcarmack82mcarmack82
authored andcommitted
devleagueprep#3 complete
1 parent 96e0333 commit 36242ed

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

exercises.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@ console.log('Difference: ', difference);
8686
* Console.log `product` to test your code.
8787
*/
8888

89+
function multiply(num1, num2){
90+
return num1 * num2;
91+
}
92+
var product = multiply(bango1, bango2);
93+
console.log('Product: ', product);
94+
8995

9096

9197
/*

0 commit comments

Comments
 (0)