I have the following string:
'You've just created'
When I assign this string to a JavaScript variable, this is interpreted as 2 strings because there's a ' character.
How can I escape it?
|
I have the following string:
When I assign this string to a JavaScript variable, this is interpreted as 2 strings because there's a How can I escape it? |
|||||||||
|
|
In JS code blocks, use a backslash:
in JS inside HTML, use a HTML entity:
|
|||
|
|
|
You can use either " or ' to quote a string, so you could do it this way:
or you can use a \ to quote just one character:
|
|||
|
|