Bernard Aybouts - Blog - Miltonmarketing.com

Approx. read time: 2.2 min.

Post: Introduction to JavaScript – Control Flow: True and False values

Introduction to JavaScript – Control Flow: True and False values

Even non-boolean data types, like strings and numbers, can still be used like booleans to determine control flow.

In JavaScript, all values have a truthy or falsy value. This means that they evaluate to true or false when they are used as a part of a control flow condition.

All variables that have been declared and assigned are truthy unless they contain one of the six values listed below:

  • false
  • 0 and -0
  • “” and ‘ ‘ (empty strings)
  • null
  • undefined
  • NaN (Not a Number)

For example:

[javascript] let variableOne = ‘I Exist!’;
if (variableOne) {
// This code will run because variableOne contains a truthy value.
} else {
// This code will not run because the first block ran.
}[/javascript]

The second line of this program checks a condition if (variableOne). By only writing the name of the variable as the condition, we are checking the truthiness of the variableOne. In this case, variableOne behaves like the value true because a string that is not empty is truthy.

Here is an example with numbers:

[javascript] let numberOfApples = 0;
if(numberOfApples){
console.log(‘Let us eat!’); // This code will not run because 0 is a falsy value
} else {
console.log(‘No food left!’); // This code will run
}[/javascript]

Since 0 is one of the six falsy values, the code within the else block runs.

There is an important distinction between a variable’s value and its truthiness:

  • numberOfApples‘s value is 0 because that is the data saved to the variable.
  • numberOfApples is falsy when used in control flow because it exists and does contain one of the six falsy values listed above.

Bernard Aybouts - Blog - Miltonmarketing.com

Exercise

1. Change the value of wordCount so that Great! You’ve started your work! is logged to the console.

2. Change the value of favoritePhrase so that This string doesn’t seem to be empty is logged to the console.


Related Videos:

Miltonmarketing.com Related Videos.

Related Links:

My little pony learning game in VB.NET

Introduction to JavaScript – Create a Variable: let

How to make a go-back button with PHP code?

Introduction to JavaScript – Variables: Undefined

Introduction to JavaScript – Control Flow

Introduction to JavaScript – Control Flow: if/else Statements

Learn Python Lists

Learn Python Variables and Types

Learn about programming Functions in Python

Introduction to JavaScript – Variables: String Interpolation II

Learn about Python Generators

Introduction to JavaScript – Create a Variable: const

JavaScript Comparison Operators

Why do most sites use cookies?

Learn Code Introspection Python Programming

Learn about JavaScript ELSE STATEMENTS

Introduction to JavaScript – Variables: Review

Hello World Android app built with Android Studio

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. 🚀