bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/JavaScript/JavaScript Foundations
JavaScript•JavaScript Foundations

JavaScript Comparison

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind JavaScript Comparison?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___ (age < 18) text = "Too young to buy alcohol";
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Comparing Different Types
JavaScript String Comparison
Comparison Operators

Comparison Operators

Comparison operators are used to compare two values .

Comparison operators always return true or false .

Given that x = 5 , the table below explains the comparison operators:

OperatorDescriptionComparingReturns
==equal tox == 8false
x == 5true
x == "5"true
===equal value and equal typex === 5true
x === "5"false
!=not equalx != 8true
!==not equal value or not equal typex !== 5false
x !== "5"true
x !== 8true
>greater thanx > 8false
<less thanx < 8true
>=greater than or equal tox >= 8false
<=less than or equal tox <= 8true

Comparison operators can be used in conditional statements to compare values and take action depending on the result:

if (age < 18) text = "Too young to buy alcohol";

You will learn more about the use of conditional statements in the if...else chapter of this tutorial.

JavaScript String Comparison

All the comparison operators above can also be used on strings:

Example

let text1 = "A";
let text2 = "B";
let result = text1 < text2;

Example

let text1 = "20";
let text2 = "5";
let result = text1 < text2;

Comparing Different Types

Comparing data of different types may give unexpected results.

When comparing a string with a number, JavaScript will convert the string to a number when doing the comparison. An empty string converts to 0. A non-numeric string converts to NaN which is always false .

CaseValueTry
2 < 12true
2 < "12"true
2 < "John"false
2 > "John"false
2 == "John"false
"2" < "12"false
"2" > "12"true
"2" == "12"false

When comparing two strings, "2" will be greater than "12".

Alphabetically 1 is less than 21.

To secure a proper result, variables should be converted to the proper type before comparison:

age = Number(age);
if (isNaN(age)) {
 voteable = "Input is not a number";
} else {
voteable = (age < 18) ? "Too young" : "Old enough";
}

Previous

JavaScript Variables

Next

JavaScript Switch Statement