I've tried to read a Json file with loadJSON from p5 but the data comes to late. If I try console.log(JSON.stringify(data))
it says {}
.
function setup() {
for(i = 0;i <= 3;i++) {
//load the JSON
data = loadJSON('test'+ i +'.json');
//Work with it
console.log(JSON.stringify(data);
}
}