mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
5 lines
166 B
JavaScript
5 lines
166 B
JavaScript
// https://github.com/espruino/Espruino/issues/290
|
|
var arr = ["a"];
|
|
result = ((arr[true] === undefined) === true) &&
|
|
((arr[false] === undefined) === true);
|