Contact: aviboots(AT)netvision.net.il
37,083 questions
48,461 answers
573 users
const str = 'This is a string with "double-quoted substring1", and "double-quoted substring2" inside.'; console.log(str); /* run: This is a string with "double-quoted substring1", and "double-quoted substring2" inside. */
const str = "This is a string with \"double-quoted substring01\", and \"double-quoted substring02\" inside."; console.log(str); /* run: This is a string with "double-quoted substring01", and "double-quoted substring02" inside. */
const str = `This is a string with "double-quoted substring001", and "double-quoted substring002" inside.`; console.log(str); /* run: This is a string with "double-quoted substring001", and "double-quoted substring002" inside. */