Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

ternary operator javascript

// Write your function here:

const lifePhase = (age) => {
  return age < 0 || age > 140 ? 'This is not a valid age':
   age < 3  ? 'baby':
   age < 13 ? 'child':
   age < 20 ? 'teen':
   age < 65 ? 'adult':'senior citizen';
}




 console.log(lifePhase(5)) 
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #ternary #operator #javascript
ADD COMMENT
Topic
Name
4+3 =