最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Includes in MultiDimensional Array - Stack Overflow

programmeradmin2浏览0评论
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
Add a ment  | 

2 Answers 2

Reset to default 7

Use 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'));

发布评论

评论列表(0)

  1. 暂无评论