Ternary Operator (Conditional Operator) in JavaScript

 The ternary operator is a shorthand for if-else statements.

Example: 

let number = 10;

let result = (number % 2 === 0) ? "Even" : "Odd";

console.log(result); // Output: Even


Explanation:

(number % 2 === 0) checks if number is even.
If true, the result will be "Even"; otherwise, it will be "Odd."

No comments:

Post a Comment

SQL Server auto generate UNIQUEIDENTIFIER

 Insert data into a table ✅ Have SQL Server auto-generate both: Id (as INT IDENTITY ) RowGuid (as UNIQUEIDENTIFIER , using NEWID()...

Best for you