programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
how to get current date and time in javascript?
You can't request more than 20 challenges without solving them. Your previous challenges were flushed.
Mon, 07/21/2008 - 15:42 — Anonymous
var t_date = new
Fri, 09/19/2008 - 21:31 — adminvar t_date = new Date();
var t_day=t_date.getDate();
var t_month=t_date.getMonth();
var t_year=t_date.getFullYear();
document.write(t_month + "-" + t_day + "-" + t_year)