1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-15 21:44:51 +02:00

add string starsWith method

This commit is contained in:
Brandon Lawrence
2018-05-11 12:14:59 -04:00
committed by GitHub
parent e10acfa677
commit ca767113f5

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")
```