Guest User

Untitled

a guest
Apr 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function whichSchool(age) {
  2. // Your code in here ...
  3. if (age < 13); {
  4.  
  5. return ("Elementary School");
  6. }
  7.  
  8. else if (age >= 13 && age <= 18); {
  9.  
  10. return ("Secondary School");
  11. }
  12.  
  13. else if (age >= 19); {
  14.  
  15. return ("College");
  16.  
  17. }
  18. }
Add Comment
Please, Sign In to add comment