Skip to content

Instantly share code, notes, and snippets.

@markson
Created March 1, 2013 23:00
Show Gist options
  • Save markson/5068638 to your computer and use it in GitHub Desktop.
Save markson/5068638 to your computer and use it in GitHub Desktop.
// Print the name and value of each property of o. Return undefined. function printprops(o) {
for(var p in o)
console.log(p + ": " + o[p] + "\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment