JavaScript Date getUTCMinutes() method - JavaScript Tutorial

JavaScript Date getUTCMinutes() method

BLUF: This tutorial on JavaScript Date getUTCMinutes() method provides an in-depth look at JavaScript's core features. It includes practical examples and code snippets to help you master modern JS development.
Key Discovery: JavaScript Date getUTCMinutes() method

Understanding JavaScript Date getUTCMinutes() method is crucial for building dynamic, interactive web applications. Explore the examples below to see it in action.

The getUTCMinutes method in JavaScript retrieves the minutes component of a specific date according to Coordinated Universal Time (UTC).

Syntax

The syntax for the getUTCMinutes method is expressed as follows:

Example

dateObj.getUTCMinutes()

Return

A numerical value ranging from 0 to 59 that signifies the minute.

JavaScript Date getUTCMinutes method example

In this section, we will explore the getUTCMinutes method by examining multiple examples.

Example 1

Here’s an illustration to display the current minute in accordance with universal time.

Example

<script>

var min=new Date();

document.writeln("Minute value : "+min.getUTCMinutes());

</script>

Output:

Output

Minute value : 45

Example 2

Let’s examine an example that demonstrates how to extract and display the minute value from a specified date in accordance with Coordinated Universal Time (UTC).

Example

<script>

var min1=new Date("August 15 1975 22:59:30 GMT+7:00");

var min2=new Date("August 15 1975 22:59:30 GMT+5:30");

document.writeln("Minute value1 : "+min1.getUTCMinutes()+"<br>");

document.writeln("Minute value2 : "+min2.getUTCMinutes());

</script>

Output:

Output

Minute value1 : 59

Minute value2 : 29

Input Required

This code uses input(). Please provide values below:

Logic Practice
Install Logic Practice
Add to home screen for a faster app-like experience