Created
September 29, 2011 00:32
-
-
Save michaelaguiar/1249697 to your computer and use it in GitHub Desktop.
Print Object Contents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function printObject(object) { | |
var out = ''; | |
for (var index in object) { | |
out += index + ': ' + object[index] + '\n'; | |
} | |
print(out); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment