SyntaxFix
Write A Post
Hire A Developer
Questions
This gets the timezone code (e.g., GMT) in older javascript (I'm using google app script with old engine):
GMT
function getTimezoneName() { return new Date().toString().get(/\((.+)\)/); }
I'm just putting this here in case someone needs it.