1 Star 2 Fork 0

周城乐/ES6

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
67-find方法介绍.html 571 Bytes
一键复制 编辑 原始数据 按行查看 历史
周城乐 提交于 2022-05-19 00:24 . ES6练习
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>find方法</title>
</head>
<body>
<script type="text/javascript">
//查找数组中id为XX的值,有则返回对应对象属性,没有则返回undefined
var ary = [{
id: 1,
name: '张三'
}, {
id: 2,
name: '李四'
}];
let target = ary.find(item => item.id == 2);
console.log(target);
var arr = [{
id: 1,
name: "张三"
}, {
id: 2,
name: "李四"
}];
let target1 = arr.find(item => item.id == 3);
console.log(target1);
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zhou-chengle/es6.git
[email protected]:zhou-chengle/es6.git
zhou-chengle
es6
ES6
master

搜索帮助