

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to set current time to some other time in JavaScript?
You cannot do this with JavaScript since it takes the system time which displays the current date with Date object. However, you can change the current date by changing the timezone as in the following code −
Example
<!DOCTYPE html> <html> <body> <script> var date, offset, nd; date = new Date(); document.write("Current: "+date); utc = date.getTime() + (date.getTimezoneOffset() * 60000); // Singapore is GMT+8 offset = 8; nd = new Date(utc + (3600000*offset)); document.write("<br>Singapore Time: "+nd.toLocaleString()); </script> </body> </html>
Output
- Related Questions & Answers
- Forming the nearest time using current time in JavaScript
- How to get current date and time in JavaScript?
- Set current date and time to timestamp in MySQL
- How to get current date and time using JavaScript?
- How to get current date/time in seconds in JavaScript?
- How to get the current time in millisecond using JavaScript?
- Java Program to display Current Time in another Time Zone
- Get current date/time in seconds - JavaScript?
- How to insert current date/time in MySQL?
- How to get current Time in Java 8?
- How to get current time in milliseconds in Python?
- How to extract the number of minutes from current time in JavaScript?
- Python program to find difference between current time and given time
- Add time to string data/time - JavaScript?
- How to return the current CPU time in Python?
Advertisements