svelte/documentation/tutorial/04-logic/03-else-if-blocks/text.md

16 lines
242 B

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