“JS Znajdź w tablicy” Kod odpowiedzi

JavaScript Znajdź obiekt według właściwości w tablicy

// To find a specific object in an array of objects
myObj = myArrayOfObjects.find(obj => obj.prop === 'something');
SmokeFrog

Znajdź tablicę JavaScript

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

Znajdź element w tablicy JavaScript

const simpleArray = [3, 5, 7, 15];
const objectArray = [{ name: 'John' }, { name: 'Emma' }]

console.log( simpleArray.find(e => e === 7) )
// expected output 7

console.log( simpleArray.find(e => e === 10) )
// expected output undefined

console.log( objectArray.find(e => e.name === 'John') )
// expected output { name: 'John' }
Inquisitive Impala

Znajdź JavaScript

const inventory = [
  {name: 'apples', quantity: 2},
  {name: 'cherries', quantity: 8}
  {name: 'bananas', quantity: 0},
  {name: 'cherries', quantity: 5}
  {name: 'cherries', quantity: 15}
  
];

const result = inventory.find( ({ name }) => name === 'cherries' );

console.log(result) // { name: 'cherries', quantity: 5 }
Real Rattlesnake

Znajdź obiekt w tablicy JavaScript z właściwością

let obj = objArray.find(obj => obj.id == 3);
Repulsive Rhinoceros

JS Znajdź w tablicy

const inventory = [
  {id: 23, quantity: 2},
  {id: '24', quantity: 0},
  {id: 25, quantity: 5}
];
// Check type and value using ===
const result = inventory.find( ({ id }) => id === 23 );
// Check only value using ==
const result = inventory.find( ({ id }) => id == 24 );
Homely Hippopotamus

Odpowiedzi podobne do “JS Znajdź w tablicy”

Pytania podobne do “JS Znajdź w tablicy”

Więcej pokrewnych odpowiedzi na “JS Znajdź w tablicy” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu