JavaScript getUTCDay() Method

You are Here:

JavaScript getUTCDay() Method

The getUTCDay() method returns an integer number corresponding to the day of the week for the given date, according to universal time: 0 for Sunday to 6 for Saturday.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Click the button to display the UTC day of the current date.</p> <button onclick="myFunction()">Display UTC Day</button> <p id="point"></p> <script> function myFunction() { var d = new Date(); var n = d.getUTCDay(); document.getElementById("point").innerHTML = n; } </script> </body> </html>

Syntax

Date.getUTCDay()

Return Value

ValueExplanation
NumberAn integer number corresponding to the day of the week for the given date, according to universal time: 0 for Sunday to 6 for Saturday.

Get UTC Day Name from Current Date

In the following example, we will get the UTC Day Name of the weekday from a Current Date.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Click the button to display the UTC day of the current date.</p> <button onclick="myFunction()">Display UTC Day</button> <p id="point"></p> <script> var arr = []; arr[0] = "Sunday"; arr[1] = "Monday"; arr[2] = "Tuesday"; arr[3] = "Wednesday"; arr[4] = "Thursday"; arr[5] = "Friday"; arr[6] = "Saturday"; function myFunction() { var d = new Date(); var n = d.getUTCDay(); document.getElementById("point").innerHTML = arr[n]; } </script> </body> </html>

Get UTC Day from Specific Date

In the following example, we will get the UTC Day of the weekday from a specific date.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Click the button to display the UTC Day of the given date.</p> <button onclick="myFunction()">Display UTC Day</button> <p id="point"></p> <script> function myFunction() { var d = new Date("May 19, 1995 02:30:25"); var n = d.getUTCDay(); document.getElementById("point").innerHTML = n; } </script> </body> </html>

Get UTC Day Name from Specific Date

In the following example, we will get the name of the UTC day of the weekday from a specific date.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Click the button to display the UTC day of the given date.</p> <button onclick="myFunction()">Display UTC Day</button> <p id="point"></p> <script> var arr = []; arr[0] = "Sunday"; arr[1] = "Monday"; arr[2] = "Tuesday"; arr[3] = "Wednesday"; arr[4] = "Thursday"; arr[5] = "Friday"; arr[6] = "Saturday"; function myFunction() { var d = new Date("May 19, 1995 02:30:25"); var n = d.getUTCDay(); document.getElementById("point").innerHTML = arr[n]; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author