getMonth Method (Windows Scripting - JScript)

 

Returns the month value in the Date object using local time.

Syntax

dateObj.getMonth() 

Remarks

The required dateObj reference is a Date object.

To get the month value using Universal Coordinated Time (UTC), use the getUTCMonth method.

The getMonth method returns an integer between 0 and 11 indicating the month value in the Date object. The integer returned is not the traditional number used to indicate the month. It is one less. If "Jan 5, 1996 08:47:00" is stored in a Date object, getMonth returns 0.

The following example illustrates the use of the getMonth method.

function DateDemo(){
   var d, s = "Today's date is: ";
   d = new Date();
   s += (d.getMonth() + 1) + "/";
   s += d.getDate() + "/";
   s += d.getFullYear();
   return(s);
}

Requirements

Version 1

Applies To: Date Object (Windows Scripting - JScript)

Change History

Date

History

Reason

March 2009

Replaced obsolete method in example code.

Content bug fix.

See Also

getUTCMonth Method (Windows Scripting - JScript)
setMonth Method (Windows Scripting - JScript)
setUTCMonth Method (Windows Scripting - JScript)