JavaScript: Date.getUTCDay() method. In this tutorial, you will learn how to get UTC day of the week in javascript with an example.
javaScript: getUTCDay() Method
Definition:- Javascript getUTCDay() method is used to get the day of week for the specified date according to universal time. The getUTCDay method will return an integer value between 0 and 6.
Syntax
Date.getUTCDay()
Note: Sunday is 0, Monday is 1, Tuesday is 2 and so on.
Example
Now we will take an example of getUTCDay() method:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript date.getUTCDay Method</title> </head> <body> <script type = "text/javascript"> var currentDate = new Date(); document.write("the javascript date.getUTCDay() : " + currentDate.getUTCDay() ); </script> </body> </html>
Result of the above code is
Conclusion
In this javascript tutorial, you have learned how to get a day using getUTCDay function with example.
You may like
- JavaScript: Date.getUTCDate() Method
- javaScript: getUTCFullYear Method
- getUTCMonth Method in JavaScript
- javaScript Digital Clock with date
- JavaScript: Set Date Methods
- String Contains JavaScript | String includes() Method
- JavaScript Get Date Methods
- JavaScript Operators With Examples
- Sorting Using JavaScript Array Sort() Method
- JavaScript Replace String With Examples
- JavaScript Array splice() Method By Example
- JavaScript: Clone an Array & Object By Example
If you have any questions or thoughts to share, use the comment form below to reach us.