Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 4: Mastering JavaScript Basics: Operators, Variable Scope, and Data Handling!

Instruction

Logical Operators

The logical operators are and, or, and not — written as &&, ||, and !. The first two take two boolean operands each, while the third takes one and returns its logical negation.
Operands are boolean values or expressions that evaluate to a boolean value.

"use strict";
const a = 0;
const b = 1;

if (a === 0 && b === 1) {  // logical 'and'
 alert("a is 0 AND b is 1");
}

if (...