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