ternary operator in nodejs code example

Example 1: ternary function javascript

var variable;
if (condition)
  variable = "something";
else
  variable = "something else";

//is the same as:

var variable = condition ? "something" : "something else";

Example 2: 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))

Example 3: using ternary operator in javascript

// program to check pass or fail

let marks = prompt('Enter your marks :');

// check the condition
let result = (marks >= 40) ? 'pass' : 'fail';

console.log(`You ${result} the exam.`);

Example 4: ternary operator js

condition ? expression1 : expression2 
// Will return expression1 if condition = true and expression2 if condition != true

Tags:

Misc Example