JAVASCRIPT DATES
Links
//DATES
var rightNow = new Date();
var dateString = rightNow.toString();
rightNow.getDay(); //0-6
getMonth(); //0-11
getFullYear(); //2021
getDate(); //1-31
getHours(); //0-23
getMinutes(); //0-59
getSeconds(); //0-59
getMilliseconds(); //0-999
getTime(); //milliseconds since midnight 1/1/1970
//Specificity
new Date("June 30, 2035");