说我想检查Mango_EA是否存在。我将如何在Node JS中做到这一点。
{
"selection1": [
{
"name": "ClashOnGan"
},
{
"name": "JoblessGarrett"
},
{
"name": "FemmeFatale"
},
{
"name": "Mango_EA"
}
]
}
答案 0 :(得分:1)
obj.selection1.some(x => x.name === "Mango_EA")
英文,
在
obj.selection1
给出的数组中,是否存在某些元素x
,它满足name
x
属性相等的条件到"Mango_EA"
。