Выйти из двойной цитаты в JavaScript

const str = '{"a":"\\""}'
const parsedStr = JSON.parse(str);

console.log(parsedStr);
SAMER SAEID