zoukankan      html  css  js  c++  java
  • javascript前端:封装array的foreach方法

    在日常工作中,会经常遍历数组,除了常用的for循环外,forEach应该也是最常用的

    forEach语法

    array.forEach(function(currentValue, index, arr), thisValue)

    但是需要注意的是,这个方法在IE低版本中竟然不兼容,所以下面封装一个,封装代码如下:

    if (!Array.prototype.forEach) {
    Array.prototype.forEach = function forEach(callback, thisArg) {
    var T, k;
    if (this == null) {
    throw new TypeError("this is null or not defined");
    }
    var O = Object(this);
    var len = O.length >>> 0;
    if (typeof callback !== "function") {
    throw new TypeError(callback + " is not a function");
    }
    if (arguments.length > 1) {
    T = thisArg;
    }
    k = 0;
    while (k < len) {
    var kValue;
    if (k in O) {
    kValue = O[k];
    callback.call(T, kValue, k, O);
    }
    k++;
    }
    };
    }
    这里用到了prototype原型链

    使用方式:

    <script>
    var vModel=[1,2,3,4] ;
    vModel.forEach(function (item, index) {
    console.log("值:"+item+"---序号:"+index)
    });
    </script>

    在ie8中运行正常,效果如下:

    javascript前端:封装array的foreach方法
  • 相关阅读:
    sklearn库学习笔记1——preprocessing库
    juypter notetbook
    信用卡欺诈
    matplotlib1
    python一行输入多个数
    pandas数据预处理
    pandas基础用法
    numpy简单用法2
    numpy 简单用法
    简单循环
  • 原文地址:https://www.cnblogs.com/huaguo/p/11652143.html
Copyright © 2011-2022 走看看