“javaScript Escape Quotes” Ответ

Метод цитаты javaScript

stringToEscape.replace(/"/g, '\\\"')
feddynventor

JavaScript Escape Once Cotote

var string = 'this isn\'t a double quoted string';
var string = "this isn\"t a single quoted string";
//           ^         ^ same types, hence we need to escape it with a backslash
Batman

javaScript Escape Quotes

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
Odd Oystercatcher

Ответы похожие на “javaScript Escape Quotes”

Вопросы похожие на “javaScript Escape Quotes”

Больше похожих ответов на “javaScript Escape Quotes” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования