<html> <head> <script language="javascript"> // Thời gian hiện tại var date = new Date(); document.write(date + '<br/>'); // Truyền tham số mili giây vào var dateMiliseconds = new Date(100000000000); document.write(dateMiliseconds + '<br/>'); // Tham số truyền vào là chuỗi ngày, tháng, năm var dateString = new Date("April 26, 2019 12:00:00"); document.write(dateString + '<br/>'); // Tham số đưa vào là năm, tháng, ngày, giờ, phút, giây, mili giây var FullTime = new Date(2019,04,05,08,13,05,110); document.write(FullTime + '<br/>'); </script> </head> <body> </body> </html>