scrimba
Learn Basic JavaScript
Escape Sequences in Strings
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Escape Sequences in Strings
AboutCommentsNotes
Escape Sequences in Strings
Expand for more info
index.js
run
preview
console
/*****
CODE OUTPUT
\' single quote
\" double quote
\\ backslash
\n newline
\r carriage return
\t tab
\b backspace
\f form feed
*****/

var myStr;
Console
"I am a "double quoted" string inside "double quotes""
,
index.html
-1:24