agiletestcoach
4/8/2020 - 10:21 AM

Terniary

// if x > 10, then(?) set color to red else (:) blue
const color = x > 10 ? 'red' : ' blue'