javascript 1 line if

JavaScript
/* When width is <= 600 breakpoint is 1, when width is between 600 and 1000 breakpoint is 2, else is 4 */
let breakpoint = width <= 600 ? 1 : width <= 1000 && width > 600 ? 2 : 4; // Breakpoint observer codevar variable = (condition) ? (true block) : ((condition2) ? (true block2) : (else block2))if (lemons) document.write("foo gave me a bar");(lemons) ? alert("please give me a lemonade") : alert("then give me a beer");
Source

Also in JavaScript: