js remove escape characters from json

Solutions on MaxInterview for js remove escape characters from json by the best coders in the world

showing results for - "js remove escape characters from json"
Arthur
26 Aug 2019
1var x = {"name":"void", "type":"O'\"Rielly"};
2document.write(JSON.stringify(x, null, ' '));
Giulio
05 May 2016
1var x = {"name":"void", "type":"O'\"Rielly"};
2document.write(JSON.stringify(x, null, '8'));