From d68023e61ef76d584126437de7446a2528d98082 Mon Sep 17 00:00:00 2001 From: Kanit Wongsuphasawat Date: Wed, 15 Mar 2017 11:04:29 -0700 Subject: [PATCH] Add ES2016 Template Literal to "See Also" in "Working with Strings" --- locales/en/strings.md | 1 + 1 file changed, 1 insertion(+) diff --git a/locales/en/strings.md b/locales/en/strings.md index b91206e..6910d65 100644 --- a/locales/en/strings.md +++ b/locales/en/strings.md @@ -129,3 +129,4 @@ same snippet of html: - [Working With Strings](http://www.quirksmode.org/js/strings.html) - a great guide to more string basics - [underscore.string](https://github.com/epeli/underscore.string) - for all the other string functions you might want - [underscore.template](http://underscorejs.org/#template) - for a deeper dive into underscore's template function +- [ES2016's Template Literal syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals) that allows template string without the need for lodash/underscore if you use ES2016 or [TypeScript](https://basarat.gitbooks.io/typescript/content/docs/template-strings.html).