How do you escape double quotes if the JSON string is the following?
var str = "[{Company: "XYZ",Description: ""TEST""}]&qu
Here the inner quote is escaped and the entire string is taken in single quote.
var str = '[{ "Company": "XYZ", "Description": "\\"TEST\\""}]';