econst ELEMENT_DATA: PeriodicElement[] = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'}
];
How return boolean if the value is inside of this array?
some thing like this
ELEMENT_DATA.includes({name: 'Helium'});
>True
econst ELEMENT_DATA: PeriodicElement[] = [
{position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H'},
{position: 2, name: 'Helium', weight: 4.0026, symbol: 'He'},
{position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li'},
{position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be'}
];
How return boolean if the value is inside of this array?
some thing like this
ELEMENT_DATA.includes({name: 'Helium'});
>True
Share
Improve this question
edited Aug 30, 2018 at 18:56
str
45.1k18 gold badges114 silver badges134 bronze badges
asked Aug 30, 2018 at 18:53
Dan JhayDan Jhay
1502 gold badges4 silver badges10 bronze badges
3
- some thing like this ELEMENT_DATA.includes({name: 'Helium'}); >True – Dan Jhay Commented Aug 30, 2018 at 18:57
- I see a single-dimensional array in your code. An array of objects specifically. – Heretic Monkey Commented Aug 30, 2018 at 18:58
- 1 Possible duplicate of Find object by id in an array of JavaScript objects – Heretic Monkey Commented Aug 30, 2018 at 18:59
2 Answers
Reset to default 7Use Array.some method which will tests whether at least one element in the array passes the test
const ELEMENT_DATA = [{
position: 1,
name: 'Hydrogen',
weight: 1.0079,
symbol: 'H'
},
{
position: 2,
name: 'Helium',
weight: 4.0026,
symbol: 'He'
},
{
position: 3,
name: 'Lithium',
weight: 6.941,
symbol: 'Li'
},
{
position: 4,
name: 'Beryllium',
weight: 9.0122,
symbol: 'Be'
}
];
let m = ELEMENT_DATA.some(function(item) {
return item.name === 'Helium'
});
console.log(m)
You could handover array, key and value for checking the objects.
function check(array, key, value) {
return array.some(object => object[key] === value);
}
var periodicElements = [{ position: 1, name: 'Hydrogen', weight: 1.0079, symbol: 'H' }, { position: 2, name: 'Helium', weight: 4.0026, symbol: 'He' }, { position: 3, name: 'Lithium', weight: 6.941, symbol: 'Li' }, { position: 4, name: 'Beryllium', weight: 9.0122, symbol: 'Be' }];
console.log(check(periodicElements, 'name', 'Helium'));