mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
5 lines
122 B
JavaScript
5 lines
122 B
JavaScript
function a(a,b,c) { return a+b+c; }
|
|
var v = a.apply(undefined,["hi ","there"," world"]);
|
|
|
|
result = v == "hi there world";
|