Skip to content

Instantly share code, notes, and snippets.

@cwharris
Last active December 28, 2015 01:39
Show Gist options
  • Save cwharris/7422017 to your computer and use it in GitHub Desktop.
Save cwharris/7422017 to your computer and use it in GitHub Desktop.
For those of you who hate living without switch-expressions.
var n = Math.floor(Math.random() * 4);
var result = n === 1 ? "one"
: n === 2 ? "two"
: n === 3 ? "three"
: "missing-no";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment