mirror of
https://github.com/espruino/Espruino.git
synced 2026-01-25 14:47:38 +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);
|