Skip to content

Instantly share code, notes, and snippets.

@marsen
Last active August 29, 2015 14:03
Show Gist options
  • Save marsen/1cc3c42271413488f97d to your computer and use it in GitHub Desktop.
Save marsen/1cc3c42271413488f97d to your computer and use it in GitHub Desktop.
function showInfo(Obj)
{
for (var k in Obj) {
if (Obj.hasOwnProperty(k)) {
console.log("Obj." + k + ":" + Obj[k]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment