Nodejs Utililty Methods Array Push

List of utility methods to do Array Push

Description

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

Method

pushAll(items)
Array.prototype.pushAll = function(items) {
    if (!Array.isArray(items)) {
        throw new TypeError("Argument must be an array.");
    return this.push(...items);
};
pushAll(items)
Array.prototype.pushAll = function (items) {
    if (!Array.isArray(items)) {
        throw new TypeError("Argument must be an array.");
    return this.push(...items);
};
pushAll(iterable)
Array.prototype.pushAll = function (iterable) {
  for (const value of iterable) {
    this.push(value)
pushAll(x)
Array.prototype.pushAll = function (x) {
  for (var i = 0; i < x.length; i += 1) {
    this.push(x[i]);
};
pushArray(arr)
Array.prototype.pushArray = function(arr) {
    if (arr) {
        for (var i = arr.length - 1; i >= 0; --i)
            this.push(arr[i]);
pushArray(arr)
Array.prototype.pushArray = function(arr) {
    this.push.apply(this, arr);
};
pushArray(arr)
Array.prototype.pushArray = function(arr) {
  for (var i = 0; i < arr.length; ++i)
    this.push(arr[i]);
pushArray(arr)
Array.prototype.pushArray = function(arr) {
    this.push.apply(this, arr);
};
push_all(array)
Array.prototype.push_all = function(array) {
    for (var index in array) {
        this.push(array[index]);
pushMe(num)
Array.prototype.pushMe = function (num) {
  this[this.length] = num;
  return this;
};