Search w3schools.com:

SHARE THIS PAGE

VBScript Minute Function


VBScript Reference Complete VBScript Reference

The Minute function returns a number between 0 and 59 that represents the minute of the hour.

Syntax

Minute(time)

Parameter Description
time Required. Any expression that can represent a time

Examples

Example 1

<script type="text/vbscript">

document.write(Minute("13:45"))

</script>

The output of the code above will be:

45

Try it yourself »

Example 2

<script type="text/vbscript">

document.write(Minute(Now()))

</script>

The output of the code above will be:


Try it yourself »


VBScript Reference Complete VBScript Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]