1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 04:42:21 +00:00

Merge pull request #91 from r4ntix/patch-1

fix Array.prototype.includes() typo
This commit is contained in:
Ruan YiFeng 2015-09-30 16:49:37 +08:00
commit 3e843a7e65

View File

@ -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