Trivial facts about Javascript date
Fact 1:
Integer value representing the month, beginning with 0 for January to 11 for December. For example,
Today is
var date = new Date(2016, 3, 29, 11, 10, 30)
instead of
var date = new Date(2016, 4, 29, 11, 10, 30)
Fact 2:
The JavaScript date ...
victorleungtw.hashnode.dev1 min read