getYear

種類メソッド
書式 Dateオブジェクト.getYear()
解説
1900年からの年数を返します。
サンプルコード
dateObj = new Date();
n = dateObj.getYear();
outputs[0] = n;
実際のスクリプトをダウンロード