扫码一下
查看教程更方便
includes() 方法用来判断一个数组是否包含一个指定的值,如果是返回 true,否则false。
语法如下
arr.includes(searchElement[, fromIndex])
布尔值。如果找到指定值返回 true,否则返回 false。
所有主流浏览器都支持 concat() 方法。
<html>
<head>
<title>JavaScript Array concat Method</title>
</head>
<body>
<script>
let site = ['jiyik', 'google', 'facebook'];
document.write(site.includes('jiyik'));
// true
document.write("<br>");
document.write(site.includes('youtube'));
// false
</script>
</body>
</html>
输出结果
true
false