一些js小技巧
Posted charlotteeeeeee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一些js小技巧相关的知识,希望对你有一定的参考价值。
退出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的使用
以上是关于一些js小技巧的主要内容,如果未能解决你的问题,请参考以下文章