Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- switch (result.body.items[0]) {
- case 1:
- //do this
- break;
- case 2:
- //do that
- break;
- case 4:
- //whatever
- break;
- }
- if (result.body.items[0] == 1) {
- //do this
- }
- else if (result.body.items[0] == 2) {
- //do that
- }
- else if (result.body.items[0] == 4) {
- //whatever
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement