Site icon MiltonMarketing.com – Bernard Aybout's Blog

Introduction to JavaScript – Control Flow: True and False values

Introduction to JavaScript - Control Flow: True and False values

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:

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:


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:

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

Exit mobile version