Showing posts with label Javascript. Show all posts
Showing posts with label Javascript. Show all posts

Friday, December 5, 2014

Get datetime in javascript

new Date() Creates a  Date  object with current date and time: var now = new Date();now.format("dd/M/yy h:mm tt"); //Edit: chan...