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