Tutorial Gateway

  • C
  • C#
  • Python
  • SQL
  • Java
  • JS
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Go Programs
    • Python Programs
    • Java Programs
  • MySQL

JavaScript SetUTCHours

JavaScript setUTCHours function is a Date Function, used to set Hours, Minutes, Seconds, and Milliseconds of a specified date as per the universal time. The syntax of the JavaScript setUTCHours function is:

 Date.setUTCHours(Hours, Minutes, Seconds, Milliseconds)

JavaScript setUTCHours Function Example

In this method, Minutes, Seconds, and Milliseconds are optional arguments.. We use the setUTCHours to set the current date hours to 12 as per the universal time.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Set UTC Hours Functions </title>
</head>
<body>
    <h1> JavaScript setUTCHours Function Example </h1>
<script>
  var dt = Date();  
  document.write("Date and Time : " + dt + "<br/>");

  dt.setUTCHours(12);
  document.write("After setUTCHours() : " + dt);
</script>
</body>
</html>
JavaScript SetUTCHours Function 1

JavaScript set UTC Hours Function Example 2

In this JavaScript Set UTC Hours example, we set the custom date hours to 12, minutes to 22, and seconds to 45 according to universal time.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Set UTC Hours Functions </title>
</head>
<body>
    <h1> JavaScript setUTCHours Function Example </h1>
<script>
  var dt = Date("January 1, 2017 10:11:19");
  document.write("Date and Time : " + dt + "<br/>");

  dt.setUTCHours(12, 22, 45);
  document.write("After setUTCHours() : " + dt);
</script>
</body>
</html>
JavaScript SetUTCHours Function 2

Filed Under: JavaScript

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial

Copyright © 2021· All Rights Reserved by Suresh.
About | Contact | Privacy Policy