Multiply
题目
The code does not execute properly. Try to figure out why.
1 | function multiply(a, b){ |
分析
函数里缺少return,添加进去就可以了
答案
1 | function multiply(a, b){ |
The code does not execute properly. Try to figure out why.
1 | function multiply(a, b){ |
函数里缺少return,添加进去就可以了
1 | function multiply(a, b){ |