第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在 javascript 中使用集合并獲得相同的結(jié)果

如何在 javascript 中使用集合并獲得相同的結(jié)果

一只名叫tom的貓 2023-07-06 18:28:07
在 javascript 中,我有 2 個(gè) seta,并從 A 組中刪除 B 組A 組:7,8,9,10 B 組:8,9結(jié)果應(yīng)該是:7,10使用 var availableA = [...new Set([...workingA].filter(x => !b1.has(x)))];結(jié)果不正確我可以用什么來(lái)區(qū)別?
查看完整描述

1 回答

?
婷婷同學(xué)_

TA貢獻(xiàn)1844條經(jīng)驗(yàn) 獲得超8個(gè)贊

這可能就是您正在尋找的:


function padHours(str) {

    const [minutes, seconds] = str.match(/\d{1,2}/g);

    return (minutes.length < 2 ? '0' + minutes : minutes) + ':' + seconds;

}


const a = new Set(['07:00', '08:00', '09:00', '10:00', '11:00', '12:00', '13:00', '14:00', '15:00', '16:00', '17:00', '18:00'].map(padHours));

const b = new Set(['07:00', '8:00', '9:00', '15:00', '16:00', '17:00', '11:00', '12:00', '13:00'].map(padHours));


// Converting to an array allows to filter (which is not possible on Sets)


const arr = [...a, ...b].filter(x => !a.has(x) || !b.has(x));


console.log(arr);


// And if you absolutely want the result as a Set


const result = new Set(arr);


console.log(result);


查看完整回答
反對(duì) 回復(fù) 2023-07-06
  • 1 回答
  • 0 關(guān)注
  • 151 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)