getMinutes

Summary

Returns the minute of the System.Date object according to local time.

Usage

public int getMinutes()

Returns

The minute of the System.Date object according to local time.

Description

Returns the minute of the System.Date object according to local time.

Examples

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

Share

HTML | BBCode | Direct Link