--- title: Else-if blocks --- Multiple conditions can be 'chained' together with `else if`: ```svelte {#if x > 10}
{x} is greater than 10
{x} is less than 5
{x} is between 5 and 10