VOOZH about

URL: https://www.digitalocean.com/community/tutorials/how-to-write-conditional-statements-in-javascript?comment=64148

⇱ How To Write Conditional Statements in JavaScript | DigitalOcean


How To Write Conditional Statements in JavaScript

Updated on August 26, 2021
πŸ‘ How To Write Conditional Statements in JavaScript

Introduction

In programming, there will be many occasions in which you will want different blocks of code to run depending on user input or other factors.

As an example, you might want a form to submit if each field is filled out properly, but you might want to prevent that form from submitting if some required fields are missing. In order to achieve tasks like these we have conditional statements, which are an integral part of all programming languages.

Conditional statements execute a specific action based on the results of an outcome of true or false.

A few examples of JavaScript conditional statements you might see include:

  • Check the location of a user and display the correct language based on country
  • Send a form on submit, or display warnings next to missing required fields
  • Open a dropdown on a click event, or close a dropdown if it is already open
  • Display an alcohol purveyor’s website if the user is over the legal drinking age
  • Display the booking form for a hotel but not if the hotel is booked

Conditional statements are part of the logic, decision making, or flow control of a computer program. You can compare a conditional statement to a β€œChoose Your Own Adventure” book, or a flowchart.

In this tutorial, we will go over conditional statements, including the if, else, and else if keywords. We will also cover the ternary operator.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

Tutorial Series: How To Code in JavaScript

JavaScript is a high-level, object-based, dynamic scripting language popular as a tool for making webpages interactive.

About the author(s)

Software engineer and open source creator

Community and Developer Education expert. Former Senior Manager, Community at DigitalOcean. Focused on topics including Ubuntu 22.04, Ubuntu 20.04, Python, Django, and more.

Still looking for an answer?

Was this helpful?

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

In the example with the grades.js is maybe a better example to use the switch instead of the if () else if construction. And a nice addition to the article could be explaining the triple = with the type checking. β€œ0” === 0 will fail but β€œ0” == 0 will work. https://codepen.io/stefferd/pen/OjqaOM

πŸ‘ Creative Commons
This work is licensed under a Creative Commons Attribution-NonCommercial- ShareAlike 4.0 International License.
  • Deploy on DigitalOcean

    Click below to sign up for DigitalOcean's virtual machines, Databases, and AIML products.

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and AI-native businesses

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow β€” whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Β© 2026 DigitalOcean, LLC.Sitemap.
Dark mode is coming soon.