“Moment.js: дата между датами” Ответ

момент количество дней между двумя датами

var given = moment("2018-03-10", "YYYY-MM-DD");
var current = moment().startOf('day');

//Difference in number of days
moment.duration(given.diff(current)).asDays();
Worrisome Warbler

Moment.js: дата между датами

You can use one of the moment plugin -> moment-range to deal with date range:

var startDate = new Date(2013, 1, 12)
  , endDate   = new Date(2013, 1, 15)
  , date  = new Date(2013, 2, 15)
  , range = moment().range(startDate, endDate);

range.contains(date); // false
Dayanaohhnana

момент JS между двумя датами

// moment version => 2.13.0.
const start = moment().subtract(1, 'days');
const end = new Date();
const actual = moment().subtract(1, 'hours');
const test = moment(actual).isBetween(start, end);
console.log(test);
  
// moment version < 2.13.0.
var startDate = new Date(2013, 1, 12)
  , endDate   = new Date(2013, 1, 15)
  , date  = new Date(2013, 2, 15)
  , range = moment().range(startDate, endDate);
range.contains(date);
CharllierJr

момент JS датируется между двумя датами

target.isBetween(start, finish, 'days', '()') // default exclusive
target.isBetween(start, finish, 'days', '(]') // right inclusive
target.isBetween(start, finish, 'days', '[)') // left inclusive
target.isBetween(start, finish, 'days', '[]') // all inclusive
amit.bhagat

Ответы похожие на “Moment.js: дата между датами”

Вопросы похожие на “Moment.js: дата между датами”

Больше похожих ответов на “Moment.js: дата между датами” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования