Javascript: Simple Data Types

Datatypes are the types of values allowed in a programming language. Javascript has three "Simple" data types: String, Number, Boolean, Undefined, and Null.

Data TypeExample
String"Joe", "Joe's", 'Joe'
Numeric1, 100000, 0.9, 3.14
Booleantrue false

We'll get to the last two in a minute.