Deep Dive: Memory & Pitfalls
Arrays Warning
Using delete on an array leaves a hole (empty slot). The length of the array does not change. It is better to use .splice() for arrays.
Inherited Properties
Delete only works on own properties. It won't remove properties from the prototype chain.