Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

197
Views
How to check that current time is between working hours

I need to check if the current time is between a representative's work hours (not with external library as momentJS).

What I have:

localTimeZone = 'America/New_York';
localWorkingHours = [
  {day: 'Sunday', from: '08:00', to: '14:00'},
  {day: 'Sunday', from: '23:00', to: '23:59'},
  {day: 'Monday', from: '00:00', to: '07:00'},
  {day: 'Tuesday', from: '08:00', to: '16:00'},
  {day: 'Wednesday', from: '08:00', to: '16:00'}
];

const now = new Date();
const currentDayInWeek = now.toLocaleString("en-US", {
    timeZone: localTimeZone,
    weekday: 'long'
});
const workingTimes = localWorkingHours.filter(times => times.day === currentDayInWeek);
workingTimes.forEach((time) => {
   // what is the best option to check that current time is between time.from and time.to ?
   // note that this code should run in another AWS region.
})
about 4 years ago · Santiago Gelvez
1 answers
Answer question

0

I did this:

const now = new Date();
const currentDayInWeek = now.toLocaleString("en-US", {
    timeZone: localTimeZone,
    weekday: 'long'
});
const currentTime = new Intl.DateTimeFormat([], {
    timeZone: localTimeZone,
    hour12: false,
    hour: '2-digit',
    minute: '2-digit'
}).format(now);

const workingTimes = localWorkingHours.filter(times => times.day === currentDayInWeek);

return workingTimes.some((time) => {
    if (currentTime >= time.from && currentTime <= time.to) return true;
});
about 4 years ago · Santiago Gelvez Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!