Skip to content

Instantly share code, notes, and snippets.

@marcgg
Created August 23, 2011 09:47
Show Gist options
  • Select an option

  • Save marcgg/1164759 to your computer and use it in GitHub Desktop.

Select an option

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