one line if else typescript code example
Example 1: how to make one line if in js
// If statement
// if (condition) //code
if (5 > 3) return "Is greater"; // "Is greater"
// If else statement
// (condition) ? if : else
let res = (1 > 3) ? "is greater" : "is less than";// "is less than"
Example 2: if shorthand typescript
const answer = x > 10 ? "greater than 10" : "less than 10";