Conditions determine the behavior of the system based on specific criteria.
Last updated 2 months ago
if / else
if <block> else <block>
var i = 92; if (i < 100) { printuf("i is less than 100"); } else { printuf("i is greater than 100"); }