详解indexOf lastIndexOf includes findIndex find
【摘要】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
let arr=[1,3,5,7,9];
// 从左往右查找, 找到返回索引, 找不到返回-1
/*let a=arr.indexOf(9);
console.log(a);
// 从右至左查找, 找到返回索引, 找不到返回-1
let b=arr.lastIndexOf(0);
console.log(b);
// 从左往右查找, 找到返回true, 找不到返回false
let c=arr.includes(3);
console.log(c);
// 1.数组的findIndex方法
// findIndex方法: 定制版的indexOf, 找到返回索引, 找不到返回-1
/* let d=arr.findIndex(function(a,b,c)
{
console.log(a,b,c);
if(a===7)
{
return true;
}
});
console.log(d);
*/
// 2.数组的find方法
// find方法返回索引, find方法返回找到的元素
// find方法如果找到了就返回找到的元素, 如果找不到就返回undefined
/*let e=arr.find(function(currentValue, currentIndex, currentArray)
{
if(currentValue === 7){
return true;
}
});
console.log(e);
*/
</script>
</body>
</html>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
文章来源: blog.csdn.net,作者:贵哥的编程之路(陈业贵),版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_37805832/article/details/108721411
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)