getUTCMinutes

Summary

Returns the minute of the System.Date object according to Coordinated Universal Time (UTC).

Usage

public int getUTCMinutes()

Returns

The minute of the System.Date object according to Coordinated Universal Time (UTC).

Description

Returns the minute of the System.Date object according to Coordinated Universal Time (UTC).

Examples

Basic Usage
1
2
3
4
import System;
 
Date d = new Date(2011, Date.Month.FEB, 10, 5, 30);
Console.log(d.getUTCMinutes()); // 30

Share

HTML | BBCode | Direct Link