I have this input
{"a":["b","c","d"]}
For whatever reason, I need output like this
"{\"a\":[\"b\",\"c\",\"d\"]}"
Instead of this (using JSON.stringify())
'{"a":["b","c","d"]}'
I know I can write some replacements or something. Is there any native Javascript method to do this?