DroidScript

JavaScript Reference

dateObj.getDay()

The getDay() method returns the day of the week for the specified date according to local time, where 0 represents Sunday.

Syntax

dateObj.getDay()

Parameters

None.

Return value

The value returned by getDay() is an integer corresponding to the day of the week: 0 for Sunday, 1 for Monday, 2 for Tuesday, and so on.

Examples

Using getDay()

The second statement below assigns the value 1 to weekday, based on the value of the Date object Xmas95. December 25, 1995, is a Monday.

var Xmas95 = new Date('December 25, 1995 23:15:30');
var weekday = Xmas95.getDay();

console.log(weekday); // 1

 Created by Mozilla Contributors and licensed under CC-BY-SA 2.5