Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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