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

169
Vistas
Simple way to display "years of service" in html/javascript

I am trying to display a number for years of service on a website. Essentially I thought I could put in a start date and current date to have an output of the years in between.

I can gt the current year using the following code but am unsure how to calculate the deference

document.write(2010) + (/\d{4}/.exec(Date())[0])

about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

Just subtract 2010 from the current year and concatenate the string:

document.write((/\d{4}/.exec(Date())[0]) - 2010 + ' years of service')

Although an easier way to get the year is to use Date.getFullYear():

document.write(new Date().getFullYear() - 2010 + ' years of service')

about 4 years ago · Juan Pablo Isaza Denunciar

0

You can use Date functions to extract components of time. To get year you can use something like:

today = new Date();
year = today.getFullYear();

To calculate difference between years (year value is number):

d = year - 2010;
about 4 years ago · Juan Pablo Isaza Denunciar

0

You can get like this

document.write(new Date().getFullYear() - 2010)

document.write(new Date().getFullYear() - 2010)

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