Open In App

D3.js | d3.utcMinutes() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The d3.utcMinutes() function in D3.js is used to return all the minutes with date in the given range of start and end time in Coordinated Universal Time (UTC).

Syntax:

d3.utcMinutes(start, end, step);

Parameters: This function accept three parameters which are given below:

  • Start: This is the given start time.
  • end: This is the given end time.
  • step: This is the optional value used to skip minutes.

Return Value: This function returns all the possible minutes in the given range.

Below programs illustrate the d3.utcMinutes() function in D3.js:

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        d3.utcMinutes() Function
    </title>
    <script src="https://d3js.org/d3.v4.min.js">
  </script>
</head>
  
<body>
  
    <script>
        // Initialising start and end time
        var start = new Date(2015, 07, 01, 4, 10);
        var end = new Date(2015, 07, 01, 4, 15);
  
        // Calling the utcMinutes() function
        // without step value
        var a = d3.utcMinutes(start, end);
  
        // Getting the minute values
        console.log(a);
    </script>
</body>
  
</html>


Output:

["2015-07-31T22:40:00.000Z", "2015-07-31T22:41:00.000Z", "2015-07-31T22:42:00.000Z", 
"2015-07-31T22:43:00.000Z", "2015-07-31T22:44:00.000Z"]

Example 2:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        d3.utcMinutes() Function
    </title>
    <script src="https://d3js.org/d3.v4.min.js">
  </script>
</head>
  
<body>
  
    <script>
        // Initialising start and end time
        var start = new Date(2015, 07, 01, 4, 10);
        var end = new Date(2015, 07, 01, 4, 15);
  
        // Calling the utcMinutes() function
        // with step value
        var a = d3.utcMinutes(start, end, 2);
  
        // Getting the minute values
        console.log(a);
    </script>
</body>
  
</html>


Output:

["2015-07-31T22:40:00.000Z", "2015-07-31T22:42:00.000Z", "2015-07-31T22:44:00.000Z"]

Reference: https://devdocs.io/d3~5/d3-time#timeMinutes



Last Updated : 24 Jul, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads