Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save krutz27/6825918 to your computer and use it in GitHub Desktop.

Select an option

Save krutz27/6825918 to your computer and use it in GitHub Desktop.
var object =
{
a:10;
b:20;
s:'hello'
};
$.each(object, function(name, value)
{
console.log(name+':'+value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment