From ac91c757105d43287ef66bcaf6cf1ce133c447df Mon Sep 17 00:00:00 2001 From: aruseni Date: Thu, 11 Jul 2019 00:40:02 +0300 Subject: [PATCH] \n in strings --- 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 dd93ef36..6a10d1fa 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -54,7 +54,7 @@ Backticks also allow us to specify a "template function" before the first backti ## Special characters -It is still possible to create multiline strings with single quotes by using a so-called "newline character", written as `\n`, which denotes a line break: +It is still possible to create multiline strings with single and double quotes by using a so-called "newline character", written as `\n`, which denotes a line break: ```js run let guestList = "Guests:\n * John\n * Pete\n * Mary";