“Найдите конкретный объект из массива в JS” Ответ

Найдите конкретный объект из массива в JS

let arr = [
    { name:"string 1", value:"this", other: "that" },
    { name:"string 2", value:"this", other: "that" }
];

let obj = arr.find(o => o.name === 'string 1');

console.log(obj);
Energetic Eland

JavaScript Найти объект в массиве

myArray.findIndex(x => x.id === '45');
muchlisoft

Найдите конкретный объект из массива в JS

let arr = [
    { name:"string 1", value:"this", other: "that" },
    { name:"string 2", value:"this", other: "that" }
];

let obj = arr.find((o, i) => {
    if (o.name === 'string 1') {
        arr[i] = { name: 'new string', value: 'this', other: 'that' };
        return true; // stop searching
    }
});

console.log(arr);
Energetic Eland

Ответы похожие на “Найдите конкретный объект из массива в JS”

Вопросы похожие на “Найдите конкретный объект из массива в JS”

Больше похожих ответов на “Найдите конкретный объект из массива в JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования