HLJ 发布于
2020-12-14 14:32:17

es6 find()函数查找数组对象里的某个值

上一篇文章:

git 回滚到某个历史版本

下一篇文章:

vue watch 6种使用方法

const data=[
  {title:'a',name:'good'},
  {title:'ab',name:'good1230'},
  {title:'abc',name:'good1230.com'},
]
console.log(data.find(item=>item.title=='a').name)
console.log(data.find(item=>item.title=='ab').name)
console.log(data.find(item=>item.title=='abc').name)

// 输出结果 good
// 输出结果 good1230
// 输出结果 good1230.com
当前文章内容为原创转载请注明出处:http://www.good1230.com/detail/2020-12-14/551.html
最后生成于 2023-06-27 21:37:45
上一篇文章:

git 回滚到某个历史版本

下一篇文章:

vue watch 6种使用方法

此内容有帮助 ?
0