Come posso inserire un array se non esistono valori? Ecco il mio array:
[
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" },
{ name: "tom", text: "tasty" }
]
Se ho provato a spingere di nuovo nell'array con uno dei due name: "tom"
o text: "tasty"
, non voglio che accada nulla ... ma se nessuno di questi è presente, lo voglio.push()
Come posso fare questo?