Espruino/tests/test078.js
Gordon Williams f3d6e0bc83 First commit
2013-09-26 14:39:04 +01:00

14 lines
273 B
JavaScript

// test for defining and executing a function
/*function foo(x) {
var arr = ["zero","one","two","three"];
return arr[x];
}*/
var foo = function() {
var arr = ["zero","one","two","three"];
return function (x) { return arr[x]; }
}();
result = foo(1)=="one";