Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function animalClass(arg1) {
- let animal = arg1;
- switch (animal) {
- case "dog":
- console.log("mammal");
- break;
- case "crocodile":
- case "tortoise":
- case "snake":
- console.log("reptile");
- break;
- default:
- console.log("unknown");
- break;
- }
- }
- animalClass("cat");
Advertisement
Add Comment
Please, Sign In to add comment