Guest User

Untitled

a guest
Mar 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. switch (foo) {
  2. case "foo":
  3. case "bar":
  4. results.push(1);
  5. break;
  6. case "baz":
  7. results.push(2);
  8. break;
  9. default:
  10. results.push(3);
  11. }
Add Comment
Please, Sign In to add comment