Is it possible to loop a json object one by one ?
let's say I have this object (text). I want to loop on text
and get next item every 1 minute until I get them all. How can I do this in javascript ?
var text =
{
"name":"John Johnson",
"street":"Oslo West 16",
"determine":"555 1234567",
"JSON":"concernant",
"you":"value"
};
setInterval(function(){
//text.getnext
}, 1000);
sorry if it is duplicated I have not found solution.