2010-05-01から1日間の記事一覧

Dateオブジェクトのクローン

var d = new Date(); var clonedDate = new Date( +d ); // 差分を追加する var another = new Date( +d + delta );