Tutorial Gateway

  • C
  • C#
  • Python
  • SQL
  • Java
  • JS
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Go Programs
    • Python Programs
    • Java Programs
  • MySQL

JavaScript setMonth Function

JavaScript setMonth function is one of the Date Function, which is used to set the Month number and Day Number of a given date as per local time. The syntax of the JavaScript setMonth function is:

 Date.setMonth(Month_Number, Day_Number)

In setMonth function, Day Number is an optional argument. Remember, Month_Number should be between 0 and 11 where 0 is January and 11 in December

JavaScript setMonth Function Example

We are using the setMonth function to set the current month to April.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Set Month Functions </title>
</head>
<body>
    <h1> JavaScript setMonth Function Example </h1>
<script>
  var dt = Date();  
  document.write("Date and Time : " + dt + "<br/>");

  dt.setMonth(3);
  document.write("After setMonth() : " + dt);
</script>
</body>
</html>
JavaScript setMonth Function 1

If you want to set the date to April 1 then use dt.setMonth(3, 1)

JavaScript set Month Example 2

In this example for JavaScript set Month, we set the month number of a custom date to 11 (December)

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Set Month Functions </title>
</head>
<body>
    <h1> JavaScript setMonth Function Example </h1>
<script>
  var dt = Date("April 1, 2016 10:11:22");
  document.write("Date and Time : " + dt + "<br/>");

  dt.setMonth(11);
  document.write("After setMonth() : " + dt);
</script>
</body>
</html>
JavaScript setMonth Function 2

JavaScript set Month Example 3

In this setMonth example, we set the month number of custom date (without Month or day) to June. This will take the default month January 01 and then sets the value to June.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript Set Month Functions </title>
</head>
<body>
    <h1> JavaScript setMonth Function Example </h1>
<script>
  var dt = Date("2016 10:11:22");
  document.write("Date and Time : " + dt + "<br/>");

  dt.setMonth(5);
  document.write("After setMonth() : " + dt);
</script>
</body>
</html>
JavaScript setMonth Function 3

Filed Under: JavaScript

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial

Copyright © 2021ยท All Rights Reserved by Suresh.
About | Contact | Privacy Policy