“JS Búsqueda en objeto” Código de respuesta

¿Cómo puede buscar en el objeto en la matriz?

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

Cómo encontrar ID en Array JavaScript

//The find() method returns the value of the first element in the provided array that satisfies the provided testing function.
const array1 = [5, 12, 8, 130, 44];

const found = array1.find(element => element > 10);

console.log(found);
// expected output: 12
Sleepy Swiftlet

JS Búsqueda en objeto

function filter(array, value, key) {
    return array.filter(key
        ? a => a[key] === value
        : a => Object.keys(a).some(k => a[k] === value)
    );
}

var a = [{ name: 'xyz', grade: 'x' }, { name: 'yaya', grade: 'x' }, { name: 'x', frade: 'd' }, { name: 'a', grade: 'b' }];


console.log(filter(a, 'x'));
console.log(filter(a, 'x', 'name'));
MAKSTYLE119

Respuestas similares a “JS Búsqueda en objeto”

Preguntas similares a “JS Búsqueda en objeto”

Más respuestas relacionadas con “JS Búsqueda en objeto” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código