js. includes
时间: 2023-11-01 19:53:07 浏览: 133
include.js
`js.includes` 是 JavaScript 中的一个数组方法,用于判断一个数组是否包含指定的元素,并返回布尔值。
使用语法如下:
```javascript
array.includes(element)
```
其中,`array` 是要进行判断的数组,`element` 是要查找的元素。
示例:
```javascript
const fruits = ['apple', 'banana', 'orange'];
console.log(fruits.includes('banana')); // true
console.log(fruits.includes('grape')); // false
```
在上述示例中,`fruits.includes('banana')` 返回 `true`,说明数组 `fruits` 包含 `'banana'` 元素。而 `fruits.includes('grape')` 返回 `false`,说明数组 `fruits` 不包含 `'grape'` 元素。
阅读全文