JS get current date time and other actionsvarMyDate =NewDate (); Mydate.getyear (); //get Current year (2-bit)mydate.getfullyear (); //Get the full year (4-bit, 1970-????)Mydate.getmonth (); //Get the current month (0-11, 0 for January)mydate.getdate (); //get current day (1-31)Mydate.getday (); //get Current week x (0-6, 0 for Sunday)Mydate.gettime (); //Gets the current time (the number of milliseconds since 1970.1.1)mydate.gethours (); //gets the current number of hours (0-23)mydate.getminutes (); //gets the current number of minutes (0-59)mydate.getseconds (); //gets the current number of seconds (0-59)mydate.getmilliseconds (); //gets the current number of milliseconds (0-999)mydate.tolocaledatestring (); //Get Current datevarMytime=mydate.tolocaletimestring ();//Get current Timemydate.tolocalestring (); //get date and time
Js Get current time