Conversion of date time GMT to a local time zone
Hello,
Please let me know the JS or FormCalc script code snippet for getting setting a date time field in GMT format to the local time zone.
Thank you
Hello,
Please let me know the JS or FormCalc script code snippet for getting setting a date time field in GMT format to the local time zone.
Thank you
Hi @mandeeps
Assuming you have a date string in GMT format and you want to convert it to the local time zone
// Assuming you have a date string in GMT format
var gmtDateString = "2024-01-16T18:24:56Z";
var gmtDate = new Date(gmtDateString);
var localTimeZoneOffset = new Date().getTimezoneOffset();
gmtDate.setMinutes(gmtDate.getMinutes() - localTimeZoneOffset);
// Example: Display the adjusted date in a specific format
var localDateString = gmtDate.toLocaleString();
console.log(localDateString);This JavaScript code snippet takes a date string in GMT format, converts it to a Date object, adjusts it to the local time zone by subtracting the local time zone offset, and then formats it as a local date string.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.