getDayOfMonth

Summary

Returns the day of the month of the System.Date object according to local time.

Usage

public int getDayOfMonth()

Returns

The day of the month of the System.Date object according to local time.

Description

Returns the day of the month 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);
Console.log(d.getDayOfMonth()); // 10

Share

HTML | BBCode | Direct Link