Answers for "javascript search object in array by property value"

4

js get array item by property

const jsObjects = [
  {id: 1, displayName: "First"}, 
  {id: 2, displayName: "Second"}, 
  {id: 3, displayName: "Third"}, 
  {id: 4, displayName: "Fourth"}
]

// You can use the arrow function expression:
var result = jsObjects.find(obj => {
	// Returns the object where
	// the given property has some value 
  	return obj.id === 1
})

console.log(result)

// Output: {id: 1, displayName: "First"}
Posted by: Guest on October-08-2020
13

javascript find object by property in array

// To find a specific object in an array of objects
myObj = myArrayOfObjects.find(obj => obj.prop === 'something');
Posted by: Guest on April-20-2020
0

find object in array javascript with property

let obj = objArray.find(obj => obj.id == 3);
Posted by: Guest on January-02-2021
1

javascript find object in array by property value

const fruits = ['apple', 'banana', 'grapes', 'mango', 'orange'];

const filterItems = (needle, heystack) => {
  let query = needle.toLowerCase();
  return heystack.filter(item => item.toLowerCase().indexOf(query) >= 0);
}

console.log(filterItems('ap', fruits)); // ['apple', 'grapes']
console.log(filterItems('ang', fruits)); // ['mango', 'orange']
Posted by: Guest on December-11-2020
0

javascript how to search an array of objects for a particular field value

var result = jsObjects.find(obj => {
  return obj.b === 6
});
Posted by: Guest on March-04-2021

Code answers related to "javascript search object in array by property value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language