I am facing an issue while trying to parse a JSON object. The behavior is unexpected when I attempt to save the following data.
var abc = '[{"id": 2,"result": "MwLYo\x5C/Awp=="}]'
console.log(JSON.parse(abc))
The "result" key's value is not being displayed as expected. How can I fix this code in order to send the correct value to the API?