“Vérifiez si un tableau contient un objet en javascript” Réponses codées

Vérifiez si un tableau contient un objet en javascript

const john = {
    'name': 'John Doe',
    'email': '[email protected]'
};
const jane = {
    'name': 'Jane Doe',
    'email': '[email protected]'
};

const list = [john, jane];
let result = list.includes(john);

console.log(result); // true
Outrageous Ostrich

Vérifiez si un tableau contient un objet en javascript

const list = [{
    'name': 'John Doe',
    'email': '[email protected]'
}, {
    'name': 'Jane Doe',
    'email': '[email protected]'
}];

const isEqual = (first, second) => {
    return JSON.stringify(first) === JSON.stringify(second);
}

const result = list.some(e => isEqual(e, {
    'name': 'John Doe',
    'email': '[email protected]'
}));

console.log(result); // true
Outrageous Ostrich

Réponses similaires à “Vérifiez si un tableau contient un objet en javascript”

Questions similaires à “Vérifiez si un tableau contient un objet en javascript”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code