1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 03:02:21 +00:00

Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages

This commit is contained in:
ruanyf 2015-09-30 16:49:27 +08:00
commit fa7f5c1794

View File

@ -292,7 +292,7 @@ console.log(entries.next().value); // [2, 'c']
## 数组实例的includes() ## 数组实例的includes()
`Array.protypeto.includes`方法返回一个布尔值,表示某个数组是否包含给定的值,与字符串的`includes`方法类似。该方法属于ES7但Babel转码器已经支持。 `Array.prototype.includes`方法返回一个布尔值,表示某个数组是否包含给定的值,与字符串的`includes`方法类似。该方法属于ES7但Babel转码器已经支持。
```javascript ```javascript
[1, 2, 3].includes(2); // true [1, 2, 3].includes(2); // true