digital clock
The date object is a built-in JavaScript object that enables you to conveniently work with date and times.You can create a date object anytime you need to store a date.Date object is created using new keyword. birthday= new Date(); birthday= new Date("june 20,2002 08:00:00"); birthday=new Date("6,20,2002"); Setting Date values. setDate() set the date of month; setMonth() set the month, month number is 0 to 11; setFullYear() set full year. setTime() set the time. setHours(),setMinutes(),setSeconds() set the time. Getting date values. getDate() get the date of month; getMonth() get the month, month number is 0 to 11; getFullYear() get full year. getTime() get the time. getHours(),getMinutes(),getSeconds() get the time. <html> <head> <style> #circle { display: none; margin-top:100px; height:200px; width:200px;