mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
5 lines
93 B
JavaScript
5 lines
93 B
JavaScript
// check for undefined-ness
|
|
a = undefined;
|
|
b = "foo";
|
|
result = a==undefined && b!=undefined;
|