From ca767113f515ab35fa92cc154b6eafceb9fc4530 Mon Sep 17 00:00:00 2001 From: Brandon Lawrence Date: Fri, 11 May 2018 12:14:59 -0400 Subject: [PATCH] add string `starsWith` method --- es6.md | 1 + 1 file changed, 1 insertion(+) diff --git a/es6.md b/es6.md index 51149f0f9..37bf9c5fa 100644 --- a/es6.md +++ b/es6.md @@ -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") ```