First page
Back
Continue
Last page
Overview
Graphics
The || operator is also useful, simplifying:
count = 0 unless count
but we can do better:
count = count || 0
or even:
count ||= 0