Skip to content

Instantly share code, notes, and snippets.

@slloyd
Last active August 29, 2015 14:14
Show Gist options
  • Save slloyd/a8d20540918c4226517f to your computer and use it in GitHub Desktop.
Save slloyd/a8d20540918c4226517f to your computer and use it in GitHub Desktop.
LOLTERNARIES

Act One

coffeescript:

a = if x then y else z

javascript:

a = x ? y : z;

Act Two

coffeescript:

a = x ? y : z

javascript:

a = typeof x !== "undefined" && x !== null ? x : {
  y: z
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment