📜  javascript 转义引号 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:21.261000             🧑  作者: Mango

代码示例3
let text = 'I\'m John Smith';
//I'm John Smith
let text2 = "I\"m Smith John";
//I"m Smith John
let text3 = `Es'cape "all" quotes`
//Es'cape "all" quotes