kindly i want to convert this string to Json using javascript
Result = {"result":"{\"Response\":\"Success\"}"}
i firstly use
Result=Result['result']
and i have this
Result= '{"Response":"Success"}'
please your help to continue
kindly i want to convert this string to Json using javascript
Result = {"result":"{\"Response\":\"Success\"}"}
i firstly use
Result=Result['result']
and i have this
Result= '{"Response":"Success"}'
please your help to continue
You can use JSON.parse
The JSON.parse() method parses a string as JSON, optionally transforming the value produced by parsing.
Result = {"result":"{\"Response\":\"Success\"}"};
Result = JSON.parse(Result['result'])