/ Published in: JavaScript
Iterate over the properties of an object
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var object = { a:10; b:20; s:'hello' }; $.each(object, function(name, value) { console.log(name+':'+value); });