const listA = [0, 1, 2, 3, 4, 5, 6]
const listB = [0, 2, 5, 6]
listA: 0到6代表周日到周一,
listB: 代表周日、周二、周五、周六
判断一周中存在的为ture,不存在的为false,
最终得到的结果是 (周几的顺序不能错乱)
[true, false, true, false, false, true, true]
const listA = [0, 1, 2, 3, 4, 5, 6]
const listB = [0, 2, 5, 6]
listA: 0到6代表周日到周一,
listB: 代表周日、周二、周五、周六
判断一周中存在的为ture,不存在的为false,
最终得到的结果是 (周几的顺序不能错乱)
[true, false, true, false, false, true, true]
for (var i = 0, aVal=[]; i < listA.length; i++) {
aVal.push(listB.indexOf(i) < 0 ? false : true);
}
console.log(aVal);
let listA = [0, 1, 2, 3, 4, 5, 6]
let listB = [0, 2, 5, 6]
let arr = [];
for(let i = 0; i < listA.length; i ++){
let value = true;
for(let j = 0; j < listB.length; j ++){
if(listA[i] == listB[j]){
arr.push(value)
value = false;
break;
}
}
if(value){
arr.push(!value)
}
}
console.log(arr);
function test(listB) {
const listA = [0, 1, 2, 3, 4, 5, 6]
listA.forEach((item, index) => {
listA[index] = listB.includes(item)
})
return listA
}
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答2.4k 阅读✓ 已解决
3 回答2.2k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决