mirror of
https://github.com/ruanyf/es6tutorial.git
synced 2025-05-24 18:32:22 +00:00
Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages
This commit is contained in:
commit
fa7f5c1794
@ -292,7 +292,7 @@ console.log(entries.next().value); // [2, 'c']
|
||||
|
||||
## 数组实例的includes()
|
||||
|
||||
`Array.protypeto.includes`方法返回一个布尔值,表示某个数组是否包含给定的值,与字符串的`includes`方法类似。该方法属于ES7,但Babel转码器已经支持。
|
||||
`Array.prototype.includes`方法返回一个布尔值,表示某个数组是否包含给定的值,与字符串的`includes`方法类似。该方法属于ES7,但Babel转码器已经支持。
|
||||
|
||||
```javascript
|
||||
[1, 2, 3].includes(2); // true
|
||||
|
Loading…
x
Reference in New Issue
Block a user