-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDate-method.js
More file actions
52 lines (36 loc) · 1.31 KB
/
Date-method.js
File metadata and controls
52 lines (36 loc) · 1.31 KB
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
// date methods in javascript
// there are 16 methods that we will learn in this tutorial.
// before getting our hands dirty with date methods some important thing that you should know.
// You can use date methods by creating a varibale a new date object.
// now by writing new Date() demodate has become an object of date method.
let demoDate = new Date();
console.log(demoDate);
// toDateString for converting date into readable format.
console.log(demoDate.toDateString());
// date methods in javascript
let dateDemo = new Date();
// to see the date in proper order
console.log(dateDemo.toDateString());
// to just print the date
console.log(dateDemo.getDate());
// to get full year
console.log(dateDemo.getFullYear());
// to get month
// for january its 0 and for december its 11
console.log(dateDemo.getMonth());
// to get day
// for monday it's 1 and for sunday it's 1
// monday 1
// tues 2
// wed 3
// thursday 4
console.log(dateDemo.getDay());
// get hours
console.log(dateDemo.getHours());
// get minutes
console.log(dateDemo.getMinutes());
// get milli second
console.log(dateDemo.getMilliseconds());
// how to print full date.
let dateDemo = new Date();
console.log(dateDemo.getDate() + "/" + dateDemo.getMonth() + "/" + dateDemo.getFullYear());