Make use of the toUTCString() method from the Date() constructor to get the current UTC time and date in JavaScript.
Example 1: Current Date and Time in UTC
const date = new Date();
const utcDateString = date.toUTCString();
console.log("Current GMT Date Time: " + utcDateString);
Output:
Example 2: Current Time in GMT
const date = new Date();
const utcTimeString = date.toUTCString().split(" ")[4];
console.log("Current GMT Time: " + utcTimeString);
Output:
Example 3: Current Date in GMT
const date = new Date();
const utcDateString = date.toUTCString().split(" ").slice(1, 4).join(" ");
console.log("Current GMT Date: " + utcDateString);
Output:
We can also make use of the toISOString() to get the time now in UTC/GMT.
Example 4: Date and Time in Zulu (Z/UTC/GMT)
const dateZulu = new Date().toISOString();
console.log("Date Time in Zulu Now: " + dateZulu);
Output:
JSFiddle Link: https://jsfiddle.net/r0b79zdh/
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to JavaScript,- Get Device Screen Width and Height using javaScript
- How to Print from JavaScript HTML using window.print
- Send Extra Data with Ajax Get or Post Request
- How to get UTC (GMT) time using JavaScript
- How to detect Browser and Operating System Name and Version using JavaScript
- Fix: Error: error:0308010C:digital envelope routines::unsupported NodeJs/Vue/React
- How to send email from JavaScript HTML using mailto
- Remove items from JavaScript array
- JavaScript : Get current page address
- Add Animated Scrolling to Html Page Title Script
- [javaScript] Convert text case to lowercase
- JavaScript date in yyyy-MM-dd format
- Power of Print Statements in JavaScript: A Comprehensive Guide
- Submit html form on dropdown menu value selection or change using javascript
- Write javaScript code in Swedish using FikaScript
- Javascript convert text case from uppercase to lowercase
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- JavaScript: Count Words in a String
- Meaning of javascript:void(0) explained with example
- JavaScript: Generate Random Numbers between 1 and 3
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to get current URL Location using Javascript HTML
- Fix: SyntaxError: The requested module does not provide an export named default
- Fix: Error: Cannot find module /node-examples/init
- JavaScript: Check if variable is a number
More Posts: - Installing Android Studio Dolphin on Mac with Apple (M1/M2) Chip - Android-Studio
- Lost your iPhone? Regenerate QR Code for Microsoft Authenticator App - Microsoft
- Import Other Python Files Examples - Python
- How to send WhatsApp message from your Android App using Intent - WhatsApp
- How to Add Brew to PATH M1/M2 Mac - MacOS
- How to Whitelist IP Address on GoDaddy Hosting? - HowTos
- BSNL Broadband upgrades speed to minimum 2MBps for all users 512Kbps 1Mbps - HowTos
- Setting Java_Home Environment variable on Windows Operating System - Java

- Get Device Screen Width and Height using javaScript
- How to Print from JavaScript HTML using window.print
- Send Extra Data with Ajax Get or Post Request
- How to get UTC (GMT) time using JavaScript
- How to detect Browser and Operating System Name and Version using JavaScript
- Fix: Error: error:0308010C:digital envelope routines::unsupported NodeJs/Vue/React
- How to send email from JavaScript HTML using mailto
- Remove items from JavaScript array
- JavaScript : Get current page address
- Add Animated Scrolling to Html Page Title Script
- [javaScript] Convert text case to lowercase
- JavaScript date in yyyy-MM-dd format
- Power of Print Statements in JavaScript: A Comprehensive Guide
- Submit html form on dropdown menu value selection or change using javascript
- Write javaScript code in Swedish using FikaScript
- Javascript convert text case from uppercase to lowercase
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- JavaScript: Count Words in a String
- Meaning of javascript:void(0) explained with example
- JavaScript: Generate Random Numbers between 1 and 3
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to get current URL Location using Javascript HTML
- Fix: SyntaxError: The requested module does not provide an export named default
- Fix: Error: Cannot find module /node-examples/init
- JavaScript: Check if variable is a number
- Installing Android Studio Dolphin on Mac with Apple (M1/M2) Chip - Android-Studio
- Lost your iPhone? Regenerate QR Code for Microsoft Authenticator App - Microsoft
- Import Other Python Files Examples - Python
- How to send WhatsApp message from your Android App using Intent - WhatsApp
- How to Add Brew to PATH M1/M2 Mac - MacOS
- How to Whitelist IP Address on GoDaddy Hosting? - HowTos
- BSNL Broadband upgrades speed to minimum 2MBps for all users 512Kbps 1Mbps - HowTos
- Setting Java_Home Environment variable on Windows Operating System - Java