diff --git a/files/en-us/learn/javascript/first_steps/strings/index.html b/files/en-us/learn/javascript/first_steps/strings/index.html index 20771a272eca1c2..1bf0a0373588f18 100644 --- a/files/en-us/learn/javascript/first_steps/strings/index.html +++ b/files/en-us/learn/javascript/first_steps/strings/index.html @@ -87,7 +87,7 @@

Escaping characters in a string

To fix our previous problem code line, we need to escape the problem quote mark. Escaping characters means that we do something to them to make sure they are recognized as text, not part of the code. In JavaScript, we do this by putting a backslash just before the character. Try this:

-
bigmouth = 'I\'ve got no right to take my place...';
+
let bigmouth = 'I\'ve got no right to take my place...';
 bigmouth;

This works fine. You can escape other characters in the same way, e.g. \",  and there are some special codes besides. See Escape notation for more details.