It seems in JavaScript you can’t delete function arguments but you
can delete global variables from a function.
Why this behavior?
var y = 1;
(function (x) { return delete y; })(1); // true
(function (x) { return delete x; })(1); // false
|
It seems in JavaScript you can’t Why this behavior?
|
||||
|
Edit: Both return |
|||||||
|
|
Actually, neither should return Here's an excellent article by Kangax on the subject: http://perfectionkills.com/understanding-delete/ |
||||
|
|
falsein normal use (i.e. not within the Firebug or browser console, which useeval()). See my answer. – Tim Down Aug 10 '11 at 13:14