-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path04-data-types.js
61 lines (50 loc) · 1.27 KB
/
04-data-types.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* ******************************
* Data Types in JavaScript
* ******************************
*/
/**
* ********************
* PRIMITIVE DATA TYPES
* ********************
*/
// typof operator verifies the Type of Data.
// String
const name = 'John Doe';
console.log(typeof name);
const strAge = '45';
console.log(typeof strAge);
// Number
const age = 45;
console.log(typeof age);
// Boolean
const hasKids = true;
console.log(typeof hasKids);
// Null
const car = null;
console.log(typeof car);
/* Null appearing as an object is a bug. First implementation of JavaScript, values were represented as a type tag and a value, type tag for objects being 0 null was represented as NULL pointer(0x00). As a result null had 0 as a type tag, hence the bogus typof return value. Null is actually a primitive value and not a object. */
// Undefined
let test;
console.log(typeof test);
// Symbol
const sym = Symbol();
console.log(typeof sym);
/**
* ********************
* REFERENCE DATA TYPES - Objects
* ********************
*/
// Array
const hobbies = ['movies', 'music'];
console.log(typeof hobbies);
// Object literal
const address = {
city: 'London',
country: 'England'
};
console.log(typeof address);
//Date
const today = new Date();
console.log(today);
console.log(typeof today);