mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
11 lines
134 B
JavaScript
11 lines
134 B
JavaScript
// test for iterating over function properties
|
|
|
|
var d = "";
|
|
|
|
function f(a,b) {}
|
|
f.c = "Foo";
|
|
for (i in f) d+=i;
|
|
|
|
result = d == "c";
|
|
|