How to check if the current time is between two times using moment.js?

Member

by domenico , in category: Javascript , a year ago

How to check if the current time is between two times using moment.js?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by lily , a year ago

@domenico 

To check if the current time is between two specific times using Moment.js, you can use the moment-range plugin. Here's an example of how you can do this:

  1. Install the moment-range plugin via npm:
1
npm install moment-range


  1. Import the necessary modules:
1
2
const moment = require('moment');
const momentRange = require('moment-range');


  1. Extend the moment object with the moment-range functionality:
1
const momentRangeExtended = momentRange.extendMoment(moment);


  1. Define the start and end times:
1
2
const startTime = moment('09:00', 'HH:mm');
const endTime = moment('18:00', 'HH:mm');


  1. Check if the current time is between the defined range:
1
2
3
4
5
6
7
const currentTime = moment();

if (momentRangeExtended().range(startTime, endTime).contains(currentTime)) {
  console.log('Current time is between the specified range.');
} else {
  console.log('Current time is not between the specified range.');
}


This will compare the current time with the start and end times to check if it falls within the specified range.

Related Threads:

How to find difference of two times using moment.js?
How to check if the time is in between given range using moment.js?
How to check if two dates are more than 7 days apart using moment.js?
How to compare two different time in moment.js?
How to get current time in hh:mm:ss format using moment in react.js?
How to subtract time using moment.js?