Values like true are called conditions. Statements relying on conditions are called conditionals.
true
Conditions decide if the code runs or gets skipped. They come in between parentheses.
if (true) { console.log("Hello there"); }