What is the ternary operator in JavaScript?
The Conditional (ternary) is a shorthand way of writing simple if-else statements in JavaScript. It's denoted by the ? : syntax and takes the following form:
condition ? expressionIfTrue : expressionIfFalse;
Here's how it works:
The condition is an...
wpgroom.hashnode.dev1 min read