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

250
Vistas
Day.js - Get array of remaining months in year

I want to get an array of the index of remaining months (0-index), not including current month, in a countdown, this year (or any date for the sake of it). I'm using lodash and dayjs, but I feel my code is a bit hard to understand.

Is there a more "dayjs" way to get what I want? I have not found more help in the doc's library or other threads with a similar problem here.

// All months - Current year's remaining months (0-index), we map in reverse until reaching 0
const yearRemainingMonths = map(range(11 - dayjs().month()), n => 11 - n)
// []

// Let's pretend we are in June, so we'd get
// [11, 10, 9, 8, 7]
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

There's not much a cleaner way. In the end, you have to loop once or to store the predefined array.

Example 1 - with cached data


import dayjs from 'dayjs'

const months = [0,1,2,3,4,5,6,7,8,9,10,11]
function remainingMonths(month) {
  return [...months].splice(month+1).reverse()
}

console.log(remainingMonths(dayjs().month())) // []
console.log(remainingMonths(5))  // june => [ 11,10,9,8,7,6]
console.log(remainingMonths(0))  // [11,10,9,8,7,6,5,4,3,2,1]

Example 2 - with for loop

function remainingMonths(month) {
  const remaining = []
  for(let i = 11; i > month; i--) {
    remaining.push(i)
  }
  return remaining
}

console.log(remainingMonths(11)) // []
console.log(remainingMonths(5))  // june => [ 11,10,9,8,7,6]
console.log(remainingMonths(0))  // [11,10,9,8,7,6,5,4,3,2,1]

Probably the for loop is a bit cleaner.

about 4 years ago · Juan Pablo Isaza 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