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 3: Fundamentals of JavaScript Programming!
Instruction
JavaScript Primitive Data Types
Boolean
Boolean variables can contain one of two possible values: true or false. JavaScript represents false by any of the following:
Boolean false
The number 0
NaN
An empty string
The built-in types undefined or null
Any other values are treated as true.
"use strict";
let firstLoop = true;
alert(typeof firstLoop);
Undefined
Variables that have been declared but not initialized wit...