- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Ternary Operator
Key Points:
- The ternary operator provides a concise way to write conditional statements in JavaScript.
- It is often used as a shorthand for simple if-else statements.
- The syntax consists of three parts: a condition, an expression if the condition is true, and an expression if the condition is false.
- The result of the ternary operator is the value of the expression that gets executed based on the condition.
- It offers a compact and readable alternative for short conditional assignments.
- The parentheses around the entire ternary operation are optional but can enhance readability.
Syntax:
condition ? expression_if_true : expression_if_false;
Example:
let age = 20;
let status = (age >= 18) ? 'Adult' : 'Minor';
Summary
The ternary operator is a useful tool for simplifying and enhancing the readability of conditional assignments in JavaScript.