How to remove double quote from the key parts of the following JSON format i.e "id", "label" and "score" are keys under double quotes that needs to be removed
nodes: [ { "id": "n1", "label": "Node 1", "score": 1.0 },{ "id": "n2", "label": "Node 2", "score": 2.2 },{ "id": "n3", "label": "Node 3", "score": 3.5 } ]
and convert it into the following JavaScript format so that I can plot the graph with CytoscapeWeb
nodes: [ { id: "n1", label: "Node 1", score: 1.0 },{ id: "n2", label: "Node 2", score: 2.2 },{ id: "n3", label: "Node 3", score: 3.5 } ]