I am doing some date conversions in javascript. when i create a new date() in javascript by default chrome converts it to Local time zone. But it does not convert in IE.
if it is not chrome based on timezone offset converting it to local time.
currently am using below code to check whether browser is chrome or not.
if(window.navigator.userAgent.toLowerCase().indexOf("chrome") == -1)
is there any other best way to check ?
Thanks