Skip to content

Instantly share code, notes, and snippets.

@jamesmoriarty
Created July 4, 2012 02:15
Show Gist options
  • Save jamesmoriarty/3044809 to your computer and use it in GitHub Desktop.
Save jamesmoriarty/3044809 to your computer and use it in GitHub Desktop.
Coffeescript Ternary Statements
# toggle order
order = ( order == "desc" ? "asc" : "desc" )
# var order, _ref;
#
# order = (_ref = order === "desc") != null ? _ref : {
# "asc": "desc"
# };
# toggle order
order = if order == "desc" then "asc" else "desc"
# var order;
#
# order = order === "desc" ? "asc" : "desc";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment