Bernard Aybouts - Blog - Miltonmarketing.com

Approx. read time: 4 min.

Post: Introduction to JavaScript – Control Flow

Introduction to JavaScript – Control Flow

In this lesson, we'll explore how we can use the building blocks of JavaScript to write programs that make decisions. Control flow statements enable JavaScript programs to make decisions by executing code based on a condition. If a given condition is true, we execute one block of code. If the statement is false, we execute another block of code.

For instance, if we were making a game in which the user had to choose which door to enter, we'd need a way for the program to know what to do once the user was in the next room.

1. Understanding Control Flow Statements

Control flow statements are used to control the order in which your code executes. The primary control flow statements in JavaScript are:

  • if statements
  • else statements
  • else if statements
  • switch statements

Example 1: Basic if Statement


let isSunny = true;

if (isSunny) 
    

In this example, if the isSunny variable is true, the message "Wear sunglasses!" will be printed to the console.

Example 2: if...else Statement


let isRaining = true;

if (isRaining)  else 
    

In this example, if isRaining is true, the message "Take an umbrella!" will be printed. If isRaining is false, the message "Enjoy the sunshine!" will be printed.

Example 3: if...else if...else Statement


let temperature = 30;

if (temperature > 30)  else if (temperature > 20)  else 
    

In this example, if the temperature is greater than 30, it will print "It's a hot day!". If the temperature is between 21 and 30, it will print "It's a warm day!". Otherwise, it will print "It's a cool day!".

2. Practical Examples

Let's apply control flow statements in practical scenarios.

Example 4: User Greeting

In this example, we will use control flow statements to display different messages based on the user's name and their knowledge of JavaScript.


let userName = 'Bernie'; // Set your name in this variable
let knowsJavaScript = false; // Set this boolean to true or false and see results

if (knowsJavaScript && userName)  else if (knowsJavaScript)  else if (userName)  else 
    

Output:
Great, Bernie! Get ready to learn something new!

Now, change knowsJavaScript to true and see how the output changes.


let userName = 'Bernie'; // Set your name in this variable
let knowsJavaScript = true; // Set this boolean to true or false and see results

if (knowsJavaScript && userName)  else if (knowsJavaScript)  else if (userName)  else 
    

Output:
Great, Bernie! Get ready to practice your JavaScript!

3. Advanced Control Flow

As we advance, we can explore more complex control flow structures, such as nested control statements and switch statements.

Example 5: Nested if Statements


let age = 25;
let hasDriverLicense = true;

if (age >= 18)  else 
    

Output:
You can drive!

Example 6: switch Statement


let day = 'Monday';

switch (day) 
    

Output:
Start of the work week!

Conclusion

Control flow statements are crucial for making decisions in your JavaScript programs. By mastering if, else, else if, nested statements, and switch statements, you can create more dynamic and interactive applications.

Practice Exercise

Try creating a simple program that uses control flow statements to check if a user-provided number is positive, negative, or zero.


let number = prompt('Enter a number:');

if (number > 0)  else if (number < 0)  else 
    

Experiment with different inputs to see how the program responds. Happy coding!

For privacy reasons YouTube needs your permission to be loaded. For more details, please see our Privacy Policy – Legal Disclaimer – Site Content Policy.

The Longevity Blueprint: AI-Powered Health Optimization

Current step:1AI-Human Medical Analyzer: Smarter, Personalized Health
2AI-Human Medical Analyzer: Smarter, Personalized Health

> SYS.HEALTH: AI-Human Medical Analyzer_

// Revolutionize Your Diagnostics

Experience the perfect blend of cutting-edge AI precision and expert human care. Our revolutionary analyzer turns your raw health data into personalized, actionable insights tailored just for you.

> INITIALIZING_BIOMETRIC_SCAN...

[+] DATA_INPUT

Securely upload complex health parameters, including lab bloodwork and comprehensive medical history.

[+] PROCESSING

Advanced algorithmic parsing combined with human-level oversight ensures hyper-accurate data interpretation.

[+] OUTPUT_MATRIX

Receive smarter, faster, and truly personalized care strategies to take immediate charge of your health journey.

A name/nickname is required to continue.

> TRANSLATION_MATRIX_ACTIVE...
[ LANG_EN ]
Knowledge Heals, Prevention Protects
[ LANG_HI ]
ज्ञान ठीक करता है, रोकथाम सुरक्षा करती है
[ LANG_ZH ]
知识治愈,预防保护
[ LANG_JA ]
知識は癒し、予防は守る
[ LANG_HE ]
הידע מרפא, המניעה מגנה
[ LANG_AR ]
المعرفة تُشفي، والوقاية تحمي
[ LANG_FR ]
La connaissance guérit, la prévention protège

> SYS.AUTH: Data Processing Consent_

[ AWAITING_AUTHORIZATION ] By providing consent, you allow us to process your uploaded data through our proprietary AI-Human analysis system.

  • [+] SECURE_REVIEW: This ensures your information is carefully reviewed using advanced AI technology and certified professional oversight to deliver personalized health insights.
  • [+] PRIVACY_LOCK: Your privacy is our strict priority. Your data will only be used for this specific diagnostic purpose.

> SYS.UPLOAD: Share Medical Records [OPTIONAL]_

[ USER_CONTROL_ACTIVE ] Uploading your medical records during registration is entirely optional. You can choose to bypass this step and provide data later if it suits your timeline.

You dictate the data flow: share as much or as little as you’re comfortable with, and let us guide you toward better health.

[+] FORMAT_SUPPORT

We accept all file formats, including photos, PDFs, text documents, and raw official medical data.

[+] DATA_YIELD

Increased inputs correlate with higher precision. The more info you share, the better we tailor your personalized insights.

> NEXT_STEPS: Post-Registration Protocol_

Once your registration is complete, a human specialist from our team will personally reach out to you within 3-10 business days. We will discuss your health journey and map out exactly how we can support you.

About the Author: Bernard Aybout (Virii8)

Avatar Of Bernard Aybout (Virii8)
I am a dedicated technology enthusiast with over 45 years of life experience, passionate about computers, AI, emerging technologies, and their real-world impact. As the founder of my personal blog, MiltonMarketing.com, I explore how AI, health tech, engineering, finance, and other advanced fields leverage innovation—not as a replacement for human expertise, but as a tool to enhance it. My focus is on bridging the gap between cutting-edge technology and practical applications, ensuring ethical, responsible, and transformative use across industries. MiltonMarketing.com is more than just a tech blog—it's a growing platform for expert insights. We welcome qualified writers and industry professionals from IT, AI, healthcare, engineering, HVAC, automotive, finance, and beyond to contribute their knowledge. If you have expertise to share in how AI and technology shape industries while complementing human skills, join us in driving meaningful conversations about the future of innovation. 🚀