Merge pull request #1135 from aruseni/patch-9

\n in strings
This commit is contained in:
Ilya Kantor 2019-07-11 09:17:03 +03:00 committed by GitHub
commit da2338720b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";