Nodejs Array Remove removerNaPosicao(index)

Here you can find the source of removerNaPosicao(index)

Method Source Code

Array.prototype.removerNaPosicao = function(index) {
  return this.splice(index, 1);
};

Related

  1. removeSame()
    Array.prototype.removeSame = function() {
      let theNewArray = [];
      this.map((value, index, array) => {
        if (array.indexOf(value) === index) {
          theNewArray.push(value);
      });
      return theNewArray;
    };
    ...
    
  2. removeWhere(property, value)
    Array.prototype.removeWhere = function (property, value) {
        "use strict";
        for(var i = 0; i < this.length; i++) {
            if(this[i][property] === value) {
                this.splice(i, 1);
                break;
    };
    ...
    
  3. remove_(integer_list, value_list)
    Array.prototype.remove_ = function(integer_list, value_list) {
      return integer_list.filter( function(i) {
        return !value_list.some(function(v) {
          return v === i;
        });
      });
    var l = []
    var integer_list =  [1, 1, 2 ,3 ,1 ,2 ,3 ,4]
    ...
    
  4. remove_(integer_list, values_list)
    Array.prototype.remove_ = function(integer_list, values_list){
    var arr = integer_list;
    var newarr;
    function list (integers_list, value) {
      for (var j = 0; j<integers_list.length; j++) {
          if (value!==integers_list[j]) {
            newarr.push(integers_list[j]);
        return newarr;
      for (var i = 0; i<values_list.length; i++) {
        newarr = [];
        arr = list(arr, values_list[i])
      return arr;
    
  5. 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;