This a good introduction, but Douglas Crockford's A Survey of the JavaScript Programming Language [http://javascript.crockford.com/survey.html] is shorter and more detailed — and a perfectly adequate introduction if you already know other programming languages.
It seems that the wiki page doesn't say anything about the `delete` and `let` operators. Those are very useful operators that should be read about. (just search `delete` or `let` on MDC)
Keep in mind that a significant proportion of cool JS features described on MDC are typically only available in recent builds of Gecko-based browsers. The baseline you can rely on in other browsers does not include let, getters/setters, comprehensions, etc., etc.
delete can be useful, but it's not nearly as useful as it sounds. delete's only purpose is to remove a property name from an object. that is the only advantage it has over just nulling out a reference directly, and in most cases, the two techniques can be used interchangeably with no negative side effects.
let is not useful to anyone doing browser based javascript work, because it doesn't work in any browser other than Firefox and derivatives. Getting a slightly different scope behavior is hardly worth throwing out 70-80% of potential users.
Wrong. It's amazing this myth still gets perpetuated. Setting something to null, or even undefined, does not delete it. That's a swift ticket to leaking memory.
Use delete. It's what it's for.
>>> var test={foo:123}
>>> test.foo = undefined
>>> for (var i in test) { console.log(i); }
foo
>>> delete test.foo
true
>>> for (var i in test) { console.log(i); }
No, setting a variable to undefined doesn't delete the object contained in that variable (and I never said it did). Neither does calling delete. Delete gets rid of the variable itself, not the object it contains, which is precisely what I did say.
JavaScript is a garbage collected language. As such, you, the developer, have no control over when an object can be ejected from memory. When a reference to your object no longer exists, it can be considered for collection. Until then, it can't.
In your example, the number object (123) is eligible for collection in both cases. The difference has nothing to do with 123, but instead relates to the test object.
In the first case, test will still have a foo property, which won't point to anything. In the second case, the property itself will be removed from the test object.
It's (most likely) true that leaving the foo property intact means using more memory than if you delete it, but the memory used is less than actual object, and whether or not this qualifies as a leak is debatable. Which leaves my original statement:
delete's only purpose is to remove a property name from an object
This is particularly relevant when you iterate over the keys in an object for some reason. In the case of a global variable, this is just an implicit removal from the global/window object.