// buat tanggal lohhh, dan dibuat tanggal 30 okt noceng.

var today = new Date();
var year  = today.getYear();
if (year < 2000)   
year = year + 1900;
var month = today.getMonth() + 1;
var date  = today.getDate();
var day = today.getDay();

