Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

198
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda