How to convert local time to EST (Eastern Standard Time) in TypeScript

1 Answer

0 votes
let date : any = new Date();

date = date.toLocaleString('en-US', { timeZone: 'America/New_York' });
  
// MM-DD-YYYY HH:MM:SS

console.log(date);

  
  
  
  
/*
run:
  
"3/6/2022, 4:20:44 AM" 
  
*/

 



answered Mar 6, 2022 by avibootz
...