mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
// problem with deleting properties that doesn't exist #344
|
|
// https://github.com/espruino/Espruino/issues/344
|
|
|
|
|
|
var foo = {};
|
|
result = (delete foo.bar) == false;
|