<html>
<body>
<h1>JavaScript Dates</h1>
<h2>The getUTCMinutes() Method</h2>
<p>getUTCMinutes() returns the minutes of a date, according to UTC:</p>
<p id="demo"></p>
<script>
const d = new Date();
let minutes = d.getUTCMinutes();
document.getElementById("demo").innerHTML = minutes;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_getutcminutes by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:07 GMT -->
</html>