if then js single line code example
Example 1: js one line if
const condition = true;
// (condition) ? if : else
(condition) ? console.log("it is true") : console.log("it is false");
Example 2: 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"