根据已存在的值算出一周中那天存在那天不存在

 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]
阅读 2.2k
4 个回答
listA.map(v => listB.includes(v))
 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
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题