mirror of
https://github.com/espruino/Espruino.git
synced 2026-01-25 14:47:38 +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";
|