Web-Dev-For-Beginners
Web-Dev-For-Beginners copied to clipboard
Added nested ternary expression
Added nested ternary expression with a note:
-
Nested Ternary expression:
let variable = condition ? <return this if true> : <return this if 1st condition is false but this condition is true> : <return this if first two conditions are false> -
Better to use if..else statements if there are 3 or more conditions.
This PR has not seen any action for a while! Closing for now, but it can be reopened at a later date.