javascript convert json array to array code example
Example 1: js array to json
// Array to JSON:
const jsonString = JSON.stringify(yourArray);
// JSON to Object / Array
const yourData = JSON.parse(jsonString);
Example 2: convert json object to array javascript
var as = JSON.parse(jstring);