JSFiddle - React, Tailwind, and code Playground
JavaScript
var results = '{{1, "A", 11, 0, 7, 0}, {2, "A", 13, 2, 2, 1}, {3, "A", 7, 0, 2, 2}}';
results = results.replace(/{/gi, '[');
results = results.replace(/}/gi, ']');
results = eval(results);
$.each(results, function(index, item){
$.each(item, function(ind, it){
//alert(it);
console.log(it);
});
});