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

272
Views
How to covert date time to local date time using timezone string in JavaScript?

I want to convert given Date time to local Date time, when input Date time and timeZone is given separately as below

  1. Date -20220120080000 ('yyyymmddHHMMSS')
  2. timezone string -("Australia/Perth")

How to convert above timezone to local Date time without using moment library ?

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

0

If you are able to use moment, this becomes pretty straightforward. Check this working example.

let date = "20220120080000";
const format = "YYYYMMDDHHmmss";
let tz = "Australia/Perth";

const remoteTime = moment.tz(date, format, tz);
const localTime = moment(remoteTime).local();
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!