EN
JavaScript - display double quotes inside string
0 points
In this article, we would like to show you how to display double quotes in JavaScript.
xxxxxxxxxx
1
console.log('Example quote: "text"');
xxxxxxxxxx
1
console.log("Example quote: \"text\"");
xxxxxxxxxx
1
console.log(`Example quote: \"text\"`);