6 lines
126 B
Text
6 lines
126 B
Text
function call_me(func, arg) {
|
|
return func(arg);
|
|
}
|
|
|
|
let answer = call_me(function(x) { return 6 * x; }, 7);
|
|
print(answer);
|