- 1
Please enter the corresponding characters to enable the display of the whole string:
var s = "I think "JavaScript is easy " "; document.write(s);
4 odpowiedzi
0
thanxx
0
There you go:
var s = "I think
\"JavaScript is
easy
\" ";
document.write(s);
0
Please enter the corresponding characters to enable the display of the whole string:
var s = "I think
\"JavaScript is
easy\" ";
document.write(s);
- 1
Use backslash (\) to escape special characters like ".