1. What is ternary ?

    condition ? true : false

    Example

    const age = 14;
    const result = age >= 18 ? "You can Drive" : "You cannot drive";
    console.log(result);
    

Tasks -

Nested Ternary

condition1 ? true1 : condition2 ? true2 : false
const grade = marks >= 90 ? 'A+' : marks >= 80 ? 'A' : 'B+';

Task -