Advertisement
Guest User

Untitled

a guest
Jan 24th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function solve(age) {
  2. if (age <= 2) {
  3. console.log("baby")
  4. } else if (age <= 13) {
  5. console.log("child")
  6. } else if (age <= 19) {
  7. console.log("teenager")
  8. } else if (age <= 65) {
  9. console.log("adult")
  10. } else {
  11. console.log("elder")
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement