头图

代码

live demo

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]

kensoz
7 声望3 粉丝

人只要努力就会犯错。 永恒之女性,引我们飞升