Multiply

题目

The code does not execute properly. Try to figure out why.

1
2
3
function multiply(a, b){
a * b
}

分析

函数里缺少return,添加进去就可以了

答案

1
2
3
4
function multiply(a, b){
i=a * b;
return i;
}