date.getUTCmonth Method javaScript With Example

date.getUTCmonth Method javaScript With Example

JavaScript: Date.getUTCMonth() method. In this tutorial, you will learn how to get UTC month in javascript with an example.

JavaScript: Date.getUTCMonth() Method

Definition:- Javascript date getUTCMonth() method is used to get the month for the specified date according to universal time. The getUTCMonth method will return an integer value between 0 and 11.

Syntax

The syntax is date.getUTCMonth method is:

 Date.getUTCMonth()

Note: January is 0, February is 1, and so on.

Example

Now we will take an example of javascript getUTCMonth() method:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JavaScript date.getUTCMonth Method</title>
</head>
<body>
  <script type = "text/javascript">
     var currentDate = new Date();
     document.write("the javascript date.getUTCMonth() : " + currentDate.getUTCMonth() ); 
  </script>  
</body>
</html>

Result of the above code is

JavaScript date.getUTCMonth Method

Conclusion

In this javascript tutorial, you have learned how to get a month using getUTCMonth function with example.

You may like

  1. JavaScript: Date.getUTCDate() Method
  2. javaScript Digital Clock with date
  3. JavaScript: Set Date Methods
  4. String Contains JavaScript | String includes() Method
  5. JavaScript Get Date Methods
  6. JavaScript Operators With Examples
  7. Sorting Using JavaScript Array Sort() Method
  8. JavaScript Replace String With Examples
  9. JavaScript Array splice() Method By Example
  10. JavaScript: Clone an Array & Object By Example
  11. Check the Object is Array or not in javascript
  12. JavaScript: Convert String to Array JavaScript
  13. javaScript Push() Array By Example
  14. javaScript Push Array, Items Into Array Example
  15. JavaScript: Important Array Methods

If you have any questions or thoughts to share, use the comment form below to reach us.

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *