mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
// array push and pop
|
|
|
|
var a = [];
|
|
var b = ["foo"];
|
|
var c = [];
|
|
|
|
c.push(42);
|
|
|
|
result = a.push("x")==1 && b.pop()=="foo" && b.length == 0 && c.push(2)==2 && c.length==2;
|