Google chrome
new Date()
IE8
new Date()
I need to extract the (IST) from Date on IE, On chrome I could do dateString.substring to extract it, but in IE I cannot do this.
The getTimeZoneOffset method gives me the offset in minutes, is there a way to get the string using the offset?
Or do I need to examine all lines of the time zone corresponding to offsets and create an object from it, and then use it?
source share