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 JavaScript Quickstart!
You have completed JavaScript Quickstart!
Instruction
Common JavaScript Data Types
JavaScript has six primitive data types: Boolean
, Null
, Undefined
, Number
, String
, and Symbol
.
Boolean
Booleans are standard across all programming languages. A Boolean data type represents only one of two values: true
or false
.
Developers use a Boolean to represent the current state of something that is li...