#每日一题# 结果是啥,都是细节拿捏[吃瓜群众]
const set = new Set([7])
set.forEach((item, index) => {
set.delete(1)
set.add(1)
console.log('遍历中', index)
})
展开
6