Nodejs Array Push akaPush(value)

Here you can find the source of akaPush(value)

Method Source Code

// function for push in array

Array.prototype.akaPush=function(value){

  var len = this.length;
  this[len] = value;/*www  .j av a 2  s .  c o  m*/
  len++;
  this.length = len;
  return len;
}

Related

  1. pushArray(arr)
    Array.prototype.pushArray = function(arr) {
      for (var i = 0; i < arr.length; ++i)
        this.push(arr[i]);
    
  2. pushArray(arr)
    Array.prototype.pushArray = function(arr) {
        this.push.apply(this, arr);
    };
    
  3. push_all(array)
    Array.prototype.push_all = function(array) {
        for (var index in array) {
            this.push(array[index]);
    
  4. pushMe(num)
    Array.prototype.pushMe = function (num) {
      this[this.length] = num;
      return this;
    };
    
  5. pushFront(value)
    Array.prototype.pushFront = function(value) {
      for(var i = this.length; i>0; i--){
        this[i] = this[i-1];
      this[0] = value;
    array = [1,2,3,4,5];
    array.pushFront(0);
    array.pushFront("Hello");
    ...
    
  6. cutAndPush(f,xs)
    'use strict';
    Array.prototype.cutAndPush = function(f,xs) {
      var i = 0;
      while (i < this.length) {
        if (f(this[i])) {
          xs.push(this[i]);
          this.splice(i,1);
        } else {
          i++;
    ...
    
  7. pushArrayIfNotExist(element)
    Array.prototype.pushArrayIfNotExist = function(element) { 
      if (!this.ifArrayInArray (element)) {
        this.push(element);
    };
    
  8. pushRange(_items)
    Array.prototype.pushRange = function (_items) {
        for (var l = 0; l < _items.length; l++) {
            this.push(_items[l]);
    };
    
  9. pushRange(arr)
    Array.prototype.pushRange = function(arr) {
        this.push.apply(this, arr);
    };