-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path11-dates--times.js
68 lines (57 loc) · 1.41 KB
/
11-dates--times.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
62
63
64
65
66
67
68
/**
* ******************************
* Dates & Times
* ******************************
**/
let val;
/**
* ********************
* Date & Time
* ********************
**/
const today = new Date(); // Instantiating a date object.
val = today;
console.log(val, typeof val); // Tue Sep 17 2019 18:12:40 GMT+0800 & Object
let birthday = new Date('9-10-1981 11:25:00'); // Changing it to a specific date/time
birthday = new Date('September 10 1981');
birthday = new Date('10 Sep 1981');
birthday = new Date('09/10/1981');
val = birthday;
// console.log(val.toUTCString());
/**
* ********************
* Get Dates
* ********************
**/
val = today.getMonth(); // month in numerical format (0 based)
val = today.getDate(); // the date/day of the month
val = today.getDay(); // day in numerical format (0 based)
val = today.getFullYear(); // year
/**
* ********************
* Get Time
* ********************
**/
val = today.getHours(); // hour
val = today.getMinutes(); // minute
val = today.getSeconds(); // seconds
val = today.getMilliseconds(); // milliseconds
val = today.getTime(); // time stamp
console.log(val);
/**
* ********************
* Set Date
* ********************
**/
birthday.setMonth(2);
birthday.setDate(12);
birthday.setFullYear(2019);
/**
* ********************
* Set Time
* ********************
**/
birthday.setHours(3);
birthday.setMinutes(30);
birthday.setSeconds(25);
console.log(birthday);