Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Created September 6, 2017 04:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myanmarlinks/2037e93d3b6525fe9bf73c12a5b3c973 to your computer and use it in GitHub Desktop.
Save myanmarlinks/2037e93d3b6525fe9bf73c12a5b3c973 to your computer and use it in GitHub Desktop.
Switch Statement
var fruit;
if (fruit == "potato") {
putIntoCase(1);
} else if (fruit == "chilli") {
putIntoCase(2);
} else if (frunt == "tomato") {
putIntoCase(3);
} ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment