C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Date getUTCDate() methodThe JavaScript date getUTCDate() method returns the day for the specified date on the basis of universal time. SyntaxThe getUTCDate() method is represented by the following syntax: dateObj.getUTCDate() ReturnAn integer value between 1 and 31 that represents the day of the specified date. JavaScript Date getUTCDate() method exampleHere, we will understand getUTCDate() method through various examples. Example 1Let's see an example to print today's date according to universal time. <script> var date=new Date(); document.writeln("Today's day: "+date.getUTCDate()); </script> Output: Today's day: 8 Example 2Let's see an example to print the day from the given date according to universal time. <script> var date1=new Date("August 15, 1947 20:22:10 GMT+12:00"); var date2=new Date("August 15, 1947 20:22:10 GMT-12:00"); document.writeln("Date value1 : "+date1.getUTCDate()+"<br>"); document.writeln("Date value2 : "+date2.getUTCDate()); </script> Output: Date value1 : 15 Date value2 : 16
Next TopicJavaScript Date
|