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

154
Views
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 answers
Answer question

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 Report

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 Report

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 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!