“JavaScript Escape Quotes” Respostas de código

Método de cotação de escape JavaScript

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

Javascript Escape Single Quote

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

Respostas semelhantes a “JavaScript Escape Quotes”

Perguntas semelhantes a “JavaScript Escape Quotes”

Mais respostas relacionadas para “JavaScript Escape Quotes” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código