js.includes
时间: 2023-09-28 22:06:58 浏览: 138
include.js
JavaScript中的`includes`是一个数组方法,它用于检查数组是否包含特定的元素,并返回布尔值。它的语法如下:
```
array.includes(element)
```
其中,`array`是要进行检查的数组,`element`是要查找的元素。
如果数组中包含该元素,则`includes`方法返回`true`;如果数组中不包含该元素,则返回`false`。这个方法是区分大小写的,所以要确保元素的大小写与数组中的元素一致。
以下是一个示例:
```javascript
const fruits = ['apple', 'banana', 'orange'];
console.log(fruits.includes('apple')); // true
console.log(fruits.includes('grape')); // false
```
在上面的代码中,`fruits.includes('apple')`会返回`true`,因为`fruits`数组包含了'apple'这个元素。而`fruits.includes('grape')`会返回`false`,因为`fruits`数组中没有'grape'这个元素。
阅读全文