mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
4 lines
80 B
JavaScript
4 lines
80 B
JavaScript
// test for postincrement working as expected
|
|
var foo = 5;
|
|
result = (foo++)==5;
|