List of utility methods to do Array Object Key
Array.prototype.singleRemove = function(objectToRemove) { if ((index = this.indexOf(objectToRemove)) !== -1) { this.splice(index,1); return this;