Skip to content

Instantly share code, notes, and snippets.

@marcgg
Created August 23, 2011 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcgg/1164759 to your computer and use it in GitHub Desktop.
Save marcgg/1164759 to your computer and use it in GitHub Desktop.
CoffeeScript Syntactic Sugar: console?.log()
console.log("hey")
=> ReferenceError: console is not defined
console?.log("hey")
=> nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment