Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function SwitchState(num) {
- if (num === null)
- return "-";
- switch (num) {
- case 8:
- return "ON OFF";
- case 12:
- return "ON ON";
- case 0:
- return "OFF OFF";
- case 4:
- return "OFF ON";
- default:
- return "INVALID";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement