JavaScript: Date setUTCDate() Method

JavaScript: Date setUTCDate() Method

setUTCDate method in javascript. In this tutorial, we will explain how to set utc date in javascript with example.

JavaScript setUTCDate() Method

Javascript setUTCDate() method, which is used to sets the day of the month for a specified date according to universal time.

Syntax

 Date.setUTCDate(day_value) 

Note :- day_value − it is an integer value from 1 to 31. This is representing the day of the month.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JavaScript date.setUTCDate Method</title>
</head>
<body>
  <script type = "text/javascript">
     var date = new Date( "Nov 24, 2019 22:32:50" );
     date.setUTCDate( 20 );
     document.write( "The javascript date.setUTCDate() : " + date );
  </script>  
</body>
</html>

Result of the above code is

JavaScript date.setUTCDate Method

Conclusion

In this javascript set UTC date tutorial, you have learned how to set UTC date javascript with example.

You may like

  1. JavaScript: Date.getUTCDate() Method
  2. javaScript: getUTCFullYear Method
  3. getUTCMonth Method in JavaScript
  4. javaScript: getUTCDay() Method By E.g.
  5. Get UTC Hours, Minutes, Seconds, MilliSeconds javascript
  6. javaScript Digital Clock with date
  7. JavaScript: Set Date Methods
  8. String Contains JavaScript | String includes() Method
  9. JavaScript Get Date Methods
  10. JavaScript Operators With Examples
  11. Sorting Using JavaScript Array Sort() Method
  12. JavaScript Replace String With Examples
  13. JavaScript Array splice() Method By Example
  14. JavaScript: Clone an Array & Object By Example

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 *