Merge pull request #528 from Brantron/patch-1

add string `starsWith` method
This commit is contained in:
Rico Sta. Cruz
2018-05-14 09:19:09 +08:00
committed by GitHub

1
es6.md
View File

@@ -68,6 +68,7 @@ See: [Binary and octal literals](https://babeljs.io/learn-es2015/#binary-and-oct
```js
"hello".repeat(3)
"hello".includes("ll")
"hello".startsWith("he")
"\u1E9B\u0323".normalize("NFC")
```