If you want to change selection, open original toplevel document below and click on "Move attachment"
Parent (intermediate) annotation
Open it on Beside regular, printable characters, special characters can be encoded using escape notation: Code Output \0 the NULL character \' single quote \" double quote \\ backslash \n new line \r carriage return \v vertical tab \t tab \b <span>backspace \f form feed<span><body><html>
Original toplevel document
String - JavaScript | MDN ing Anything to be converted to a string.
Template literals
Starting with ECMAScript 2015, string literals can also be so-called Template literals:
`hello world`
`hello!
world!`
`hello ${who}`
escape `${who}`
Escape notation
Beside regular, printable characters, special characters can be encoded using escape notation:
Code Output \0 the NULL character \' single quote \" double quote \\ backslash \n new line \r carriage return \v vertical tab \t tab \b backspace \f form feed \uXXXX unicode codepoint \u{X} ... \u{XXXXXX} unicode codepoint \xXX the Latin-1 character
Unlike some other languages, JavaScript makes no distinction between single-quoted st
Summary
status
not learned
measured difficulty
37% [default]
last interval [days]
repetition number in this series
0
memorised on
scheduled repetition
scheduled repetition interval
last repetition or drill
Details
No repetitions
Discussion
Do you want to join discussion? Click here to log in or create user.