//現在の日付を取得
var now=new Date();
//getFullYear関数で年だけを表示
document.write(now.getFullYear());
