Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created November 21, 2021 22:31
Show Gist options
  • Select an option

  • Save Octagon-simon/65967d65ba0ef1e49184ce2f8bbe910d to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/65967d65ba0ef1e49184ce2f8bbe910d to your computer and use it in GitHub Desktop.
var x = 20;
( x == 0 ) ? (console.log("x is 0")) :
( x == 10 ) ? (console.log("x is 10")) :
( x == 20 ) ? (console.log("x is 20")) :
(console.log("x is unknown"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment