DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • 10 Svelte Data Grids: Choose the Right One for Your Project
  • When Angular APIs Return 200 but the Frontend Is Already Failing Users
  • 5 Layers of Prompt Injection Defense You Can Wire Into Any Node.js App
  • Boosting React.js Development Productivity With Google Code Assist

Trending

  • Optimizing High-Volume REST APIs Using Redis Caching and Spring Boot (With Load Testing Code)
  • The Hidden Cost of AI Tokens: Engineering Patterns for 10x Resource Efficiency
  • How SaaS Architectures Break at Scale — and the Engineering Decisions That Prevent It
  • Testing AI-Infused Apps: A Dual-Layer Framework for AI Quality Assurance
  1. DZone
  2. Coding
  3. JavaScript
  4. How If-Else Logic works in Svelte

How If-Else Logic works in Svelte

Like other modern frameworks, such as Vue/React, Svelte allows for logic within components. Learn how if-else statement logic works in Svelte.

By 
Johnny Simpson user avatar
Johnny Simpson
·
Updated Apr. 21, 22 · Tutorial
Likes (4)
Comment
Save
Tweet
Share
4.4K Views

Join the DZone community and get the full member experience.

Join For Free

Like other modern frameworks such as Vue and React, Svelte allows for logic within components. In this article, we'll look at how if and else statement logic works in Svelte outside of Javascript.

Using If-Else Statements in Svelte

Let's create a new component. Make a new file in your Svelte project in ./src/components called Component.svelte. Inside that component, add the following code:

JavaScript
 
<script>
    // we write export let to say that this is a property
    // that means we can change it later!
    export let x = 0;
    const addToCounter = function() {
        ++x;
    }
</script>

<button id="counter" on:click="{addToCounter}">{x}</button>

<style>
    button {
        background: #ffb334;
        border-radius: 8px;
        border: none;
        font-weight: bold;
        cursor: pointer;
        padding: 0.5rem 2rem;
        color: white;
        font-size: 1.5rem;
    }
</style>


This simple component creates a counter which adds 1 to its value every time you click it. Let's look at how we'd use inline logic in this example.

If Statement Logic in Svelte

Logic in Svelte goes inside {} curly brackets. Suppose we want a message to display based on the value of x from our component above. Our logic should be:

  • if the value is more than 5 and less than 10, show "more than 5 clicks!"
  • if the value is more than 10, show "wow that's a lot of clicks!"
  • otherwise, show "keep clicking!"

In Svelte, the syntax for that looks like this:

JavaScript
 
<script>
    export let x = 0;
    const addToCounter = function() {
        ++x;
    }
</script>

{#if x <= 10 && x > 5}
    <h2>more than 5 clicks!</h2>
{:else if x > 10}
    <h2>wow that's a lot of clicks!</h2>
{:else} 
    <h2>keep clicking!</h2>
{/if}

<button id="counter" on:click="{addToCounter}">{x}</button>


This means we don't have to rely on Javascript functions to write out which title we want to display. Instead, we can write it straight into our Svelte components.

If-Else Statements in Svelte

Similar to before, if you only wanted to have an if and an else, you can do that too:

{#if x <= 10 && x > 5}
    <h2>more than 5 clicks!</h2>
{:else} 
    <h2>keep clicking!</h2>
{/if}


And finally, an if statement alone also works - perfect for hiding or displaying DOM elements based on Javascript values:

{#if x <= 10 && x > 5}
    <h2>more than 5 clicks!</h2>
{/if}


Structure of If-Else Statements in Svelte

  • The first part of the if statement always starts with {#if STATEMENT} where STATEMENT is any logical Javascript statement we want to test out.
  • If we continue with else if or else, it's written as {:else if STATEMENT} and {:else} - using : instead of #.
  • We finish all logical statements with {/if}.
JavaScript Svelte

Published at DZone with permission of Johnny Simpson. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • 10 Svelte Data Grids: Choose the Right One for Your Project
  • When Angular APIs Return 200 but the Frontend Is Already Failing Users
  • 5 Layers of Prompt Injection Defense You Can Wire Into Any Node.js App
  • Boosting React.js Development Productivity With Google Code Assist

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook