From 1c73177ca0c3946dad31a77a29b51e1b53fc838b Mon Sep 17 00:00:00 2001 From: aruseni Date: Mon, 1 Jul 2019 03:15:31 +0300 Subject: [PATCH] Strings article --- 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 2b45f0b7..0f95a4c3 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -92,7 +92,7 @@ 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". -We would also use it if we want to insert a quote into the string. +We might also use it if we wanted to insert a quote into the string. For instance: