How do you use the ? : (conditional) operator in JavaScript?

This is a one-line shorthand for an if-else statement. It’s called the conditional operator.1 Here is an example of code that could be shortened with the conditional operator: This can be shortened with the ?: like so: Like all expressions, the conditional operator can also be used as a standalone statement with side-effects, though this is unusual outside of … Read more