Как экранировать js
Ответы
Nikolai Gagarinov
04 апреля 2022
в JS для экранирования используется символ обратного слеша. Благодаря ему можно экранировать двойные ковычки и спец символы
console.log("this is \"test-string\" another string");
// => 'this is "test-string" another string'
console.log('this is \n multiline')
// => 'this is
// => multiline'
console.log('this is \\n single line')
// => 'this is \n single line'
0
0