fix product function

This commit is contained in:
Sabrina 2020-10-25 16:02:53 +08:00
parent 9d93b390d7
commit ccba1c9494

View File

@ -11,8 +11,8 @@
return a+b;
}
function product(a, b) {
return a * b;
function product(a, b, c) {
return a * b * c;
}
function divide(a, b) {