javascript替代Array.prototype.some操作
Posted liangcheng11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript替代Array.prototype.some操作相关的知识,希望对你有一定的参考价值。
const initIds: any[] = [1,2,3];
const Ids: any[] = [2,3,4];
const delIds: any[] = [];
const addIds: any[] = [];
Ids.forEach((id: any) => {
let flag = false;
for (let initId of initIds) {
flag = id === initId;
if (flag) {
break;
}
}
if (!flag) {
addIds.push(id);
}
});
initIds.forEach((initId: any) => {
let flag = false;
for (let id of Ids) {
flag = id === initId;
if (flag) {
break;
}
}
if (!flag) {
delIds.push(initId);
}
});
以上是关于javascript替代Array.prototype.some操作的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript tail.select - 一个纯粹的,香草的JavaScript替代品