Skip to content

Instantly share code, notes, and snippets.

@voodootikigod
Created January 17, 2011 00:27
Show Gist options
  • Save voodootikigod/782298 to your computer and use it in GitHub Desktop.
Save voodootikigod/782298 to your computer and use it in GitHub Desktop.
Wrapper for printing in JavaScript
function pp (t) {
if (typeof console == "object" && typeof console.log == "function")
console.log(t);
else
print(t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment