4 lines
54 B
JavaScript
4 lines
54 B
JavaScript
|
|
var multiply = function (a, b) {
|
||
|
|
return a * b;
|
||
|
|
};
|