Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Last active January 2, 2016 08:09
Show Gist options
  • Save adikahorvath/8274239 to your computer and use it in GitHub Desktop.
Save adikahorvath/8274239 to your computer and use it in GitHub Desktop.
simpler console.log
function log(message) {
try {
console.log(message);
}
catch (e) {}
finally {
return;
}
}
log("hello world");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment