Home >Web Front-end >JS Tutorial >JavaScript method to format a specified date object_javascript skills
The example in this article describes the method of formatting a specified date object in javascript. Share it with everyone for your reference. The details are as follows:
/* * 格式化Date对象为:“2015-04-17 10:20:00” * var dateObj = new Date(); */ function formartDate(dateObj){ var updatetimeval =dateObj.getFullYear()+"-"+(dateObj.getMonth()+1)+"-" +dateObj.getDate() +" "+dateObj.getHours()+":"+dateObj.getMinutes()+":"+dateObj.getSeconds(); return updatetimeval; }
I hope this article will be helpful to everyone’s JavaScript programming design.