How to loop through an array of JSON using for loop in javascript and make a table row using it – Jquery
I do have this sample array of JSON, and I do not know how to loop through them and use it in creating a table row. Sample code: var data = [ {foo1:"a",foo2:"b",foo3:"c"}, {foo1:"d",foo2:"e",foo3:"f"}, {foo1:"g",foo2:"h",foo3:"i"} ] I did use this…