S2
jS
Learn
Create Your Own
Split Screen
Go to Live Site
Next Page
This example:
if (health < 20) { ctx.fillStyle = 'red'; } else { ctx.fillStyle = 'green'; }
Could be re-expressed as:
ctx.fillStyle =
(health < 20) ? 'red' : 'green'
;