Answers for "get object only from array javascript"

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

find an object from array of objects javascript

function getByValue2(arr, value) {

  var result  = arr.filter(function(o){return o.b == value;} );

  return result? result[0] : null; // or undefined

}
Posted by: Guest on December-09-2020

Code answers related to "get object only from array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language