It looks like you are returning an array. If it always consists of just one element, you can do it (yes, this is almost the same as Tomalakโs answer):
$.each(result[0], function(key, value){ console.log(key, value); });
If you can have multiple elements and want to $.each() over all of them, you can $.each() :
$.each(result, function(key, value){ $.each(value, function(key, value){ console.log(key, value); }); });
no.good.at.coding Aug 16 2018-11-11T00: 00Z
source share