one line condition checking javascript code example
Example 1: one line if statement javascript
if (lemons) document.write("foo gave me a bar");
Example 2: The conditional (ternary) operator with three condition
String year = credits < 30 ? "freshman" : credits <= 59 ? "sophomore" : credits <= 89 ? "junior" : "senior";