美文网首页
JS数组方法

JS数组方法

作者: JunhYan | 来源:发表于2021-01-04 15:39 被阅读0次

copyWithin()

Array.prototype.copyWithin = function(target, start/*, end*/) {
    // Steps 1-2.
    if (this == null) {
      throw new TypeError('this is null or not defined');
    }

    var O = Object(this);

    // Steps 3-5.
    var len = O.length >>> 0;

    // Steps 6-8.
    var relativeTarget = target >> 0;

    var to = relativeTarget < 0 ?
      Math.max(len + relativeTarget, 0) :
      Math.min(relativeTarget, len);

    // Steps 9-11.
    var relativeStart = start >> 0;

    var from = relativeStart < 0 ?
      Math.max(len + relativeStart, 0) :
      Math.min(relativeStart, len);

    // Steps 12-14.
    var end = arguments[2];
    var relativeEnd = end === undefined ? len : end >> 0;

    var final = relativeEnd < 0 ?
      Math.max(len + relativeEnd, 0) :
      Math.min(relativeEnd, len);

    // Step 15.
    var count = Math.min(final - from, len - to);

    // Steps 16-17.
    var direction = 1;

    if (from < to && to < (from + count)) {
      direction = -1;
      from += count - 1;
      to += count - 1;
    }

    // Step 18.
    while (count > 0) {
      if (from in O) {
        O[to] = O[from];
      } else {
        delete O[to];
      }

      from += direction;
      to += direction;
      count--;
    }

    // Step 19.
    return O;
};

isArray

Array.isArray = function (arg) {
    return Object.prototype.toString.call(arg) === '[object Array]';
};

forEach

Array.prototype.forEach = function (callbackfn, thisArg) {
    for (var i = 0, len = this.length; i < len; i++) {
        callbackfn.call(thisArg, this[i], i, this);
    }
};

map

Array.prototype.map = function (callbackfn, thisArg) {
    var ret = [];
    for (var i = 0, len = this.length; i < len; i++) {
        ret.push(callbackfn.call(thisArg, this[i], i, this));
    }
    return ret;
};

filter

Array.prototype.filter = function (callbackfn, thisArg) {
    var ret = [];
    for (var i = 0, len = this.length; i < len; i++) {
        if (callbackfn.call(thisArg, this[i], i, this)) {
            ret.push(this[i]);
        }
    }
    return ret;
};

some

Array.prototype.some = function (callbackfn, thisArg) {
    for (var i = 0, len = this.length; i < len; i++) {
        if (callbackfn.call(thisArg, this[i], i, this)) {
            return true;
        }
    }
    return false;
};

every

Array.prototype.every = function (callbackfn, thisArg) {
    for (var i = 0, len = this.length; i < len; i++) {
        if (!callbackfn.call(thisArg, this[i], i, this)) {
            return false;
        }
    }
    return true;
};

indexOf

Array.prototype.indexOf = function (searchElement, fromIndex) {
    for (var i = fromIndex ? Math.max(fromIndex, 0) : 0, len = this.length; i < len; i++) {
        if (this[i] === searchElement) {
            return i;
        }
    }
    return -1;
};

lastIndexOf

Array.prototype.lastIndexOf = function (searchElement, fromIndex) {
    for (var i = fromIndex !== undefined ? Math.min(fromIndex, this.length - 1) : this.length - 1; i >= 0; i--) {
        if (this[i] === searchElement) {
            return i;
        }
    }
    return -1;
};

reduce

Array.prototype.reduce = function (callbackfn, initialValue) {
    var i = 0,
        len = this.length;

    if (initialValue === undefined) {
        initialValue = this[i++];
    }

    for (; i < len; i++) {
        initialValue = callbackfn(initialValue, this[i], i, this);
    }
    return initialValue;
};

reduceRight

Array.prototype.reduceRight = function (callbackfn, initialValue) {
    var len = this.length,
        i = len;

    if (initialValue === undefined) {
        initialValue = this[--i];
    }
    for (; i--; ) {
        initialValue = callbackfn(initialValue, this[i], i, this);
    }
    return initialValue;
};

相关文章

  • 数组(Array)<迭代器>

    一、Js数组迭代器方法 主要介绍js数组中的forEach,every,some,filter,map迭代器方法 ...

  • js基础了解

    js数组常用遍历方法使用: js数组常用操作方法使用: 基本逻辑运算: 基本字符串操作方法:

  • js 数组

    js 中数组的长度发生改变,数组就真的发生改变,快速清空数组就让数组长度为0js 数组的方法

  • js关于数组的方法汇总

    js关于数组的方法汇总

  • 封装常用数组操作函数

    1. 数组扁平化 方法一 : 递归迭代数组 方法二 : 通过js原生 falt方法展开数组 方法三 通过正则...

  • JS数组常用方法

    @[toc] JS数组方法 数组是 js 中最常用到的数据集合,其内置的方法有很多,熟练掌握这些方法,可以有效...

  • JS如何判断一个数组是否为空、是否含有某个值

    一、js判断数组是否为空方法一: arr.length 二、js判断数组是否含有某个值方法一: arr.ind...

  • 数组进阶

    JS数组奇巧淫技 数组进阶方法~ 数组使用方法比较多。什么时候使用什么方法,用对方法,不用对很大的原因就是数组方法...

  • 数组常用方法

    数组常用方法 一、js数组常用方法: 1、join() Array.join() 方法将数组中所有元素都转换成字...

  • js 数组操作探究

    有空闲时间了, 深入的研究一下js 中的数组方法 js中的数组方法 首先是会改变原数组的方法: shift un...

网友评论

      本文标题:JS数组方法

      本文链接:https://www.haomeiwen.com/subject/sdsvoktx.html