2022-01-05T15:27:41.170Z - Current Time In Js Code Example


Example: how to print date like 10-may-2018 in javascript

date.toString('YYYY-MM-dd'); 'Tue Feb 10 2015 15:42:50'  var date = new Date('4-1-2015');  date.getDay();// returns 3      date.getYear();// returns 115, no of years after 1900  date.getFullYear();// returns 2015   date.getMonth();// returns 3, starting 0 with jan   date.getUTCDate();// returns 31

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?