Javascript Array excluding(item)
Array.prototype.excluding = function(item) { return this.slice(0).remove(item); }