Skip to main content

if statements, explained.

Published 2021/09/07 14:33

What are if statements in programming?

Another important building block of any programming, regardless of programming language.

Every new programmer should therefore know about it. So what is it?

If statements are basically a way of saying:

I want you to do something, but ONLY on certain specific circumstances.

In other words, do something only if certain conditions are met.

Let's see an example:

Suppose you're writing a program. In that program, you're asking your user for their name so you can give them a personalised greeting:

var name = prompt("What is your name?")
console.log(`Hello, ${name}`)

You're also asking your user for their age. You want to tell your user "let's have a beer", but only if they're 18 years or older.

You can do this using "if" statements in your program.

An if statement (depending on language) looks something like this:

if(check){
    // stuff to do if check passes
}

So in our example, we want to say:

If the user is 18 years old or older, invite them for a beer

The code in Javascript would look something like this:

var age = prompt("How old are you")

if(age >= 18){
    console.log("Let's have a beer!")
}

If statements are otherwise called "conditional statements" because the if block is only executing when a certain "condition" is met.

Using if statements, you can therefore control the flow of your program, depending on certain criteria.

But what if we want to also do something if the check DOESN'T pass? Say for example, the user isn't 18 years or older?

This is where the else comes in.

In our case, we want to tell the user "You're a bit too young to drink" if they're under 18.

This is what it looks like in Javascript:

var age = prompt("How old are you")

if(age >= 18){
    console.log("Let's have a beer!")
}
else{
    console.log("You're a bit too young to drink")
}

Thanks for reading this thread! 👋👋👋

Dev, Explained (43 part series)

  1. Javascript Scopes, explained.
  2. Javascript Promises, explained.
  3. Accessibility, explained.
  4. React, explained
  5. Should I use forEach() or map()?
  6. Should I use Flexbox or CSS Grid?
  7. Docker, explained.
  8. Unit testing, explained
  9. Git, explained.
  10. Typescript, explained.
  11. async/await, explained.
  12. The DOM, explained.
  13. Regular expressions, explained
  14. GraphQL, explained.
  15. Vue, explained.
  16. Svelte, explained.
  17. API, explained.
  18. Javascript Hoisting, explained.
  19. Immediately Invoked Function Expressions (IIFE), explained.
  20. ARIA roles, explained.
  21. Test-driven Development, explained.
  22. ARIA live regions, explained.
  23. aria-label in accessibility, explained.
  24. Type coercion in Javascript, explained.
  25. Variables, explained.
  26. if statements, explained.
  27. Arrays, explained.
  28. Currying in Javascript, explained.
  29. Memoization, explained.
  30. For loops, explained.
  31. Javascript Prototypes, explained.
  32. React Hooks, explained.
  33. Graph databases, explained.
  34. MongoDB, explained.
  35. Serverless, explained.
  36. Javascript Callback functions, explained.
  37. HTML, explained.
  38. CSS, explained.
  39. Responsive design, explained.
  40. Javascript, explained.
  41. The CSS Box Model, explained.
  42. CSS Flexbox, explained.
  43. CSS Grid, explained.
2022 Savvas Stephanides
Buy me a coffee
Some icons from Freepik