Learn Create Your Own Split Screen

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';