Nodejs Utililty Methods Array Remove

List of utility methods to do Array Remove

Description

The list of methods to do Array Remove are organized into topic(s).

Method

remove_value(value)
Array.prototype.remove_value = function(value){
    var len = this.length,
        i;
    for(i = 0;i < len;i+=1){
        if(this[i] === value){
            this.splice(i,1);
            i-=1;
removerNaPosicao(index)
Array.prototype.removerNaPosicao = function(index) {
  return this.splice(index, 1);
};