I am trying to construct json for an api call but using javascript, but when I try the following I am getting single quotes which is failing. How do I get double quotes from json.parse
const obj1 = JSON.stringify(myObj);
{"shipment":{"service_code":"fedex_priority_overnight"}
const obj = JSON.parse(obj1)
shipment: { service_code: 'fedex_priority_overnight'}