From 2e72eed4f4bab18f49dbf408cce8f9bc42556091 Mon Sep 17 00:00:00 2001 From: Alex Zvorygin Date: Mon, 18 Sep 2017 15:30:23 -0400 Subject: [PATCH] fix typo, add relevant emoji --- 1-js/05-data-types/03-string/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/03-string/article.md b/1-js/05-data-types/03-string/article.md index e002ae47..c0e7a7e4 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -89,7 +89,7 @@ Examples with unicode: ```js run alert( "\u00A9" ); // © alert( "\u{20331}" ); // 𠌱, a rare chinese hieroglyph (long unicode) -alert( "\u{1F60D}"); // a smiling face sumbol (another long unicode) +alert( "\u{1F60D}"); // 😍, a smiling face symbol (another long unicode) ``` All special characters start with a backslash character `\`. It is also called an "escape character".