Open In App

JavaScript Date setMonth() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The date.setMonth() method is used to set month into a date object which is created using the Date() constructor. 

Syntax:

DateObj.setMonth(month_Value);

Parameter: This method accepts a single parameter as mentioned above and described below:

  • month_Value: This parameter holds the value of the month that we want to set in the date created using the Date() constructor.

Return Values: It returns the new i.e updated month which is set by the setMonth() method. 

Note: The DateObj is a valid Date object created using the Date() constructor in which we want to set the month. The value of the month is from 0 to 11 because the total number of months in a year is 12 from January to December. Value 0 is used for January, 1 for February, and so on till 11 for December. More codes for the above method are as follows:

Below is an example of Date setMonth() method.

Example 1: 

Javascript




// Here a date has been assigned
// while creating Date object
let dateobj =
new Date('October 13, 1996 05:35:32');
 
// new month of January is being set in above Date
// Object with the help of setMonth() function
dateobj.setMonth(0);
 
// new month from above Date Object is
// being extracted using getMonth()
let B = dateobj.getMonth();
 
// Printing new month
console.log(B);


Output:

0

Example 2: If in the Date() constructor we do not give any month while creating the date object, still the setMonth() method will be able to set a new month in the created date object. 

Javascript




// Here month has not been assigned
// while creating Date object
let dateobj = new Date('1996, 05:35:32');
 
// New month of 2 is being set in above Date
// Object with the help of setMonth() method
dateobj.setMonth(2);
 
// New month from above Date Object is
// being extracted using getMonth()
let B = dateobj.getMonth();
 
// Printing new month
console.log(B);


Output:

2

Example 3: If nothing as a parameter is given in the Date() constructor, still setMonth() method will be able to set month but year, date, etc remains current ones. Here 11 is the new month of December, 1 is the current date and 2018 is the current year. 

Javascript




// Here nothing has been assigned
// while creating Date object
let dateobj = new Date();
 
// New month of 11 is being set in above Date
// Object with the help of setMonth() method
dateobj.setMonth(11);
 
// Month from above Date Object is
// being extracted using getMonth()
let B = dateobj.getMonth();
 
// Date from above Date Object is
// being extracted using getDate()
let C = dateobj.getDate();
 
// Year from above Date Object is
// being extracted using getFullYear()
let D = dateobj.getFullYear();
 
// Printing new month
console.log(B);
 
// Printing current date
console.log(C);
 
// Printing current year
console.log(D);


Output:

11
1
2018

Example 4: If the value of month 15 is given as the parameter of the setMonth() method, It will set 3 as the month because the month range is from 0 to 11, and hence (15%12 = 3). Here 3 is the new month of April and the year becomes 1997 from 1996 because the month range is from 0 to 11 i.e, a total of 12 and we set a new month as 3 which increases year by one to 1997 from 1996 and the month becomes 3. 

Javascript




// Here date has been assigned
// while creating Date object
let dateobj =
new Date('October 13, 1996 05:35:32');
 
// new month of 15 is being set in above Date
// Object with the help of setMonth() function
dateobj.setMonth(15);
 
// Month from above Date Object is
// being extracted using getMonth()
let B = dateobj.getMonth();
 
// Year from above Date Object is
// being extracted using getFullYear()
let C = dateobj.getFullYear();
 
// Printing new month
console.log(B);
 
// Printing new year
console.log(C);


Output:

3
1997

We have a complete list of Javascript Date Objects, to check those please go through this Javascript Date Object Complete reference article.

Supported Browsers: The browsers supported by the JavaScript Date setMonth() method are listed below:

  • Google Chrome
  • Internet Explorer
  • Mozilla Firefox
  • Opera
  • Safari

We have a Cheat Sheet on Javascript where we covered all the important topics of Javascript to check those please go through Javascript Cheat Sheet-A Basic guide to JavaScript.



Last Updated : 19 May, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads