1twice_json = '"{\\"orderId\\":\\"123\\"}"' // (ingore the extra slashes)
2json = JSON.parse(twice_json) // => '{"orderId":"123"}'
3obj = JSON.parse(json) // => {orderId: "123"}
4obj.orderId // => "123"
5