关于javascript:数组中有某值就删除没有就加入

26次阅读

共计 172 个字符,预计需要花费 1 分钟才能阅读完成。

代码

const arr = [1,2,3,4]
const x = 5

// 用 indexOf() 办法判断
const index = arr.indexOf(x);
// index < 0: 没有,所以追加
// index >= 0: 有,所以删除
index < 0 ? arr.push(x) : arr.splice(index, 1)

console.log(arr)
// [1,2,3,4,5]

正文完
 0