List of utility methods to do Object Key Delete
remove(key)Object.prototype.remove = function (key) { if (!this.hasOwnProperty(key)) return if (isNaN(parseInt(key)) || !(this instanceof Array)) delete this[key] else this.splice(key, 1) return this; }; ... |