5 lines
68 B
Text
5 lines
68 B
Text
var multiply = function(a, b) {
|
|
a * b
|
|
}
|
|
|
|
$print(multiply(2, 3))
|