There's a one-lined if/else statement (ternary operations), as seen here.
What about the two-lined ones?
e.g.
if (true) console.log("True");
else console.log("False");
edit: The 'normal' / standard if/else statements I see look like this:
if (true) {
console.log("True");
} else {
console.log("False");
}
So the difference: No curly brackets.