“JS Adicionar à matriz se não existir” Respostas de código

Anexar a matriz Verifique se existe javascript

var array = ['test1','test2'];
var item = 'test2';

if(array.indexOf(item) === -1) {
    array.push(item);
}
// array = ["test1", "test2"]

if(array.indexOf(item) !== -1) {
    array.push(item);
}
// array = ["test1", "test2", "test2"]
Ashamed Antelope

JS empurrar para a matriz se existir o item

if(this.items.indexOf(item) === -1) {
    this.items.push(item);
    console.log(this.items);
}
Colorful Cat

JS Adicionar à matriz se não existir

var newItem = "NEW_ITEM_TO_ARRAY";
var array = ["OLD_ITEM_1", "OLD_ITEM_2"];

array.indexOf(newItem) === -1 ? array.push(newItem) : console.log("This item already exists");

console.log(array)
shahul

Respostas semelhantes a “JS Adicionar à matriz se não existir”

Perguntas semelhantes a “JS Adicionar à matriz se não existir”

Mais respostas relacionadas para “JS Adicionar à matriz se não existir” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código