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()
How can I do this?