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

213
Views
Incorrect date conversion of JSON dates using moment, OffSet value is ignored

I am making an api call and getting the below response.

{
    "Country": "U.S.A.",
    "FaceValueCcy": "",
    "IsApproved": true,
    "MDate": "/Date(1742130000000+1100)/",
    "MtmInUsd": 0,
}

When I am trying to convert the MDate into 'DD-MMM-YYYY' format. I am expecting the result as '17-Mar-2025' but it is giving me the output as '16-Mar-2025'. This is the code I am using to convert the date.

moment('/Date(1742130000000+1100)/').utc().format('DD-MMM-YYYY')

When I query the value '1742130000000' in epochconvertor, it gives me 16-Mar-2025. why moment is ignoring +1100? Is there any alternate way to resolve this issue?

about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

You need to use parseZone() to keep the offset.

console.log(moment.parseZone('/Date(1742130000000+1100)/').utc().format('DD-MMM-YYYY'));

console.log(moment.parseZone('/Date(1742130000000+1100)/').utc().format()); // full time
console.log(moment.parseZone('/Date(1742130000000+1100)/').format()); // full time without UTC conversion
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>

Reference: https://github.com/moment/moment/issues/3291

about 4 years ago · Juan Pablo Isaza Report

0

Use paeseZone

moment('/Date(1742130000000+1100)/').parseZone().format('DD-MMM-YYYY')
about 4 years ago · Juan Pablo Isaza Report

0

It should be:

moment.parseZone('/Date(1742130000000+1100)/').format('DD-MMM-YYYY')
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!