Escaping Double Cetation in JavaScript
const str = '{"a":"\\""}'
const parsedStr = JSON.parse(str);
console.log(parsedStr);
SAMER SAEID
const str = '{"a":"\\""}'
const parsedStr = JSON.parse(str);
console.log(parsedStr);