Open In App

How to Round Time to the Nearest Quarter Hour using JavaScript ?

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

We have given a time and the task is to round the time to the nearest quarter-hour with the help of JavaScript. There are two approaches that are discussed below:

Approach 1: Use getMinutes() and getHours() methods to get the minutes and hours in a variable (Ex. mins, hrs) add the 7.5 to mins, divide it by 15, take the integer value and multiply it by 15, which will give the nearest quarter of minutes. If this value goes beyond 60, then take the mod with 60. For hrs, if mins 52 and if the hrs == 23, set hrs to 0 else increment its value by 1.

  • Example:




    <!DOCTYPE HTML>
    <html>
      
    <head>
        <title>
            Round time to the nearest quarter 
            hour in JavaScript
        </title>
        <style>
            body {
                text-align: center;
            }
              
            h1 {
                color: green;
            }
        </style>
    </head>
      
    <body>
        <h1
           GeeksforGeeks 
        </h1>
        <p>
          Click on button to round the time 
          to nearest quarter hour
        </p>
        <p id="gfg"></p>
        <button onClick="GFG_Fun()">
          click here
        </button>
        <p id="geeks"></p>
        <script>
            var up = document.getElementById('gfg');
            var down = document.getElementById('geeks');
            var date = new Date();
            up.innerHTML = "" + date + "";
      
            function GFG_Fun() {
      
                // Getting minutes
                var mins = date.getMinutes();
      
                // Getting hours
                var hrs = date.getHours();
                var m = (parseInt((mins + 7.5) / 15) * 15) % 60;
      
                // Converting '09:0' to '09:00'
                m = m < 10 ? '0' + m : m;
                var h = mins > 52 ? (hrs === 23 ? 0 : ++hrs) : hrs;
      
                // Converting '9:00' to '09:00'
                h = h < 10 ? '0' + h : h;
                down.innerHTML = h + ":" + m;
            }
        </script>
    </body>
      
    </html>

    
    

  • Output:

Approach 2: Use getMinutes() and getHours() methods to get the minutes and hours in a variable (Ex. mins, hrs). Divide mins by 15, take the round value by Math.round() and multiply it by 15, which will give the nearest quarter of minutes. If this value goes beyond 60, then take the mod with 60. For hrs, if mins 52 and if the hrs == 23, set hrs to 0 else increment its value by 1.

  • Example:




    <!DOCTYPE HTML>
    <html>
      
    <head>
        <title>
            Round time to the nearest quarter 
            hour in JavaScript
        </title>
        <style>
            body {
                text-align: center;
            }
              
            h1 {
                color: green;
            }
        </style>
    </head>
      
    <body>
        <h1
           GeeksforGeeks 
        </h1>
        <p>
          Click on button to round the time 
          to nearest quarter hour
        </p>
        <p id="gfg"></p>
        <button onClick="GFG_Fun()">
          click here
        </button>
        <p id="geeks"></p>
        <script>
            var up = document.getElementById('gfg');
            var down = document.getElementById('geeks');
            var date = new Date();
            up.innerHTML = "" + date + "";
      
            function GFG_Fun() {
      
                // Getting minutes
                var mins = date.getMinutes();
      
                // Getting hours
                var hrs = date.getHours();
                var m = (Math.round(mins/15) * 15) % 60;
      
                // Converting '09:0' to '09:00'
                m = m < 10 ? '0' + m : m;
                var h = mins > 52 ? (hrs === 23 ? 0 : ++hrs) : hrs;
      
                // Converting '9:00' to '09:00'
                h = h < 10 ? '0' + h : h;
                down.innerHTML = h + ":" + m;
            }
        </script>
    </body>
      
    </html>

    
    

  • Output:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads