2007-01-21から1日間の記事一覧

日付を好みのフォーマットに変換する

たとえば「2007年01月21日 16時10分」 などの形式にしたい場合。 /* * Date クラスを拡張してformat 関数を追加する。 */ Date.prototype.format = function() { year = this.getYear(); month = this.getMonth() + 1; day = this.getDate(); hour = this.ge…