inLastMonth()
更新日: 2018-09-14
is.inLastMonth(value:date)
渡された日付が今日から1ヶ月前までの期間内かどうかを判定します。
- インターフェース:
not
var tenDaysAgo = new Date(new Date().setDate(new Date().getDate() - 10));
var fortyDaysAgo = new Date(new Date().setDate(new Date().getDate() - 40));
is.inLastMonth(tenDaysAgo);
=> true
is.inLastMonth(fortyDaysAgo);
=> false
is.not.inLastMonth(fortyDaysAgo);
=> true
デモ
変数を判定してconsole.log
を出力します。
JavaScript
var val = new Date(new Date().setDate(new Date().getDate() - 10));
if (is.inLastMonth(val)) {
console.log('10日前は1ヶ月前までの範囲内です。');
}
© 2014-2016 Aras Atasaygin Released under the MIT license
このコンテンツはAras Atasaygin(arasatasaygin)によるis.jsドキュメントを翻訳/改変したものです。