Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

can we fine a key with help of value in array of objects 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 5');

console.log(obj);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #fine #key #array #objects #javascript
ADD COMMENT
Topic
Name
4+1 =