JSFiddle - React, Tailwind, and code Playground

by btipling

JavaScript

var item="[{\"Column1\":\"false\"}]";
var parsed = JSON.parse(item);
parsed.forEach(function(row) {
    console.log(row.Column1);
});
console.log(parsed[0].Column1);