trey (owner)

Revisions

gist: 88393 Download_button fork
public
Description:
Switch statement in JavaScript.
Public Clone URL: git://gist.github.com/88393.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
10
11
12
switch(id){
case "previous":
// something
break;
case "next":
// something
break;
default:
// something
}