关于javascript:一些js小技巧

62次阅读

共计 213 个字符,预计需要花费 1 分钟才能阅读完成。

退出 forEach

try {var arr = [1, 2, 3, 4];
  arr.forEach(function (item, index) {
    // 跳出条件
    if (item === 3) {throw new Error("LoopTerminates");
    }
    //do something
    console.log(item);
  });
} catch (e) {if (e.message !== "LoopTerminates") throw e;
};

参考链接:缩小 for 的应用

正文完
 0