How can I push into an array if neither values exist?
(如果两个值都不存在,如何推入数组?)
Here is my array:(这是我的数组:)
[
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" }
]
If I tried to push again into the array with either name: "tom"
or text: "tasty"
, I don't want anything to happen... but if neither of those are there then I want it to .push()
(如果我尝试再次使用name: "tom"
或text: "tasty"
将其推入数组,那么我什么都不想发生……但是,如果这两个都不存在,那么我希望它执行.push()
)
How can I do this?
(我怎样才能做到这一点?)
ask by tarnfeld translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…