From af15b5d2c2a3932c2140f753e24fc617d1c31fe8 Mon Sep 17 00:00:00 2001 From: Jeff Posnick Date: Wed, 20 May 2015 16:14:25 -0400 Subject: [PATCH] Mentioned String.fromCodePoint() --- extended-unicode-escapes/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/extended-unicode-escapes/index.html b/extended-unicode-escapes/index.html index 3b6f309..eecd162 100755 --- a/extended-unicode-escapes/index.html +++ b/extended-unicode-escapes/index.html @@ -67,6 +67,12 @@ limitations under the License. \u{1F302}.

+

+ This feature is closely related to String.fromCodePoint(), + which was added to Chrome 41. That method provides a programmatic way of translating a code + point value into a string, outside the context of a string literal. +

+

Note that in browser which don't support extended Unicode escapes, attempting to use them in JavaScript string literals will trigger syntax errors that cannot be wrapped in a