Try this:
let objectArray = json.map((each)=>{return JSON.parse(each)});
console.log(objectArray) // This will give you the required output
3
solved How to remove double quotes from JSON Array
Try this:
let objectArray = json.map((each)=>{return JSON.parse(each)});
console.log(objectArray) // This will give you the required output
3
solved How to remove double quotes from JSON Array