JavaScript Data Types
Primitives
| Type | Example |
|---|---|
| String | "hello" |
| Number | 42, 3.14 |
| Boolean | true/false |
| undefined | unset variable |
| null | intentional empty |
Use typeof to check a type.
| Type | Example |
|---|---|
| String | "hello" |
| Number | 42, 3.14 |
| Boolean | true/false |
| undefined | unset variable |
| null | intentional empty |
Use typeof to check a type.
let name = 'Alice'; // string
let age = 25; // number
let ok = true; // boolean
console.log(typeof name); // 'string'
More in JavaScript