/* Shorten if-else by ternary operator*/ const go = "yes" let race = null race = go === "yes" ? 'Green Light' : 'Red Light';