Javascript Date function returning different time zone in different operating system like returning "India standard time" windows operating system and "IST" in mac system. i want as "India standard time" in all operating systems.
this is my code:
<!DOCTYPE html>
<html>
<body>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = Date();
</script>
</body>
</html>
result In windows : Tue Feb 14 2017 13:03:02 GMT+0530 (India Standard Time) In mac system : Tue Feb 14 2017 13:03:02 GMT+0530 (IST)