javascript date difference in months

javascript date difference in months

How can I find the difference between two dates in terms of months using javascript?

View Answers

May 15, 2012 at 1:28 PM

<html>
<head>
<script type="text/javascript">

var date1=new Date();
var date2 =new Date("Jan, 11, 2000")
var yearDiff=date1.getFullYear()-date2.getFullYear();

var y1=date1.getFullYear();
var y2=date2.getFullYear();

var monthDiff=(date1.getMonth() + y1*12)-(date2.getMonth() +y2*12);
document.write("Date difference in month : "+monthDiff);
</script>
</head>
</html>

Description: In javascript whenever you write new Date() it shows the current date in standard format with current day,date,time and GMT.you can also specify your own date by using new Date(). You can get number of years of specified date by using getFullYear() function and number of months by using getMonth() method .To get the date difference in months you must also consider years diffrence.









Related Tutorials/Questions & Answers:
javascript date difference in months
javascript date difference in months  How can I find the difference between two dates in terms of months using javascript?   <html>... of months by using getMonth() method .To get the date difference in months you
javascript date difference in days.
javascript date difference in days.   I want to find the difference between two dates in terms of days. I am using javascript. Please help.  ... of days by using method getDay(). Now to find date difference
Advertisements
javascript date difference in years
javascript date difference in years  I want to find the difference between two dates with respect to years. I am using javascript. Please help.  ...=date1.getFullYear()-date2.getFullYear(); document.write("Date difference in years : "+yearDiff
JavaScript Date Difference
JavaScript Date Difference...; <h2>Date Difference</h2> <script type="text/javascript...; In this section, we are going to determine the difference between two dates
Java date add months
Java date add months In this tutorial, you will learn how to add months to date. Here, we are going to add few months to current date and return the date... have added 4 months to the calendar and using the Date class, we have got
Java subtract months from date
Java subtract months from date In this tutorial, you will learn how to subtract months from date. Using the Calendar class, you can add and subtract date...(-). This will reduce date from date. Here, we are going to subtract few months
javascript date comparison
javascript date comparison  How to compare dates and display... language="JavaScript"> var date1 = new Date("jan, 25, 2010"); var today = new Date(); var difference = today - date1; var days =parseInt(difference
What is difference between the java and javascript?
What is difference between the java and javascript?  What is the difference beteen the java and javascript?   Hello Friend, Read HereADS_TO_REPLACE_1 Thanks
Ask date difference
dates from the user and calculates the date difference in terms of days. import...Ask date difference  Hello, I have a problem about how to calculate date, the result from this code is not complete , this is my code . please help
How to calculate Date Difference in Java?
How to calculate Date Difference in Java?  Hi, I have two dates variable. How to calculate Date Difference in Java? Thanks   Hi, You can use the Calendar class for calculating the date difference in Java. Get data
javascript date picker - Date Calendar
javascript date picker  how to insert a date picker user control in a html/jsp using javascript??? please help, it's urgent.  Hi Friend, Please visit the following links: http://www.roseindia.net/javascript
Date object using JavaScript
Date object using JavaScript  What's the Date object using JavaScript
What is difference between the java and javascript?
What is difference between the java and javascript?  What is the difference beteen the java and javascript?   Hello Friend, Difference:ADS... by Sun Microsystems, while JavaScript is a scripting language that was introduced
javascript questions on date
javascript questions on date  how to add some days to an existing date
javascript tomorrow date.
javascript tomorrow date.  Hi, how can I display tomorrow's date using javascript?   <html> <head> <title>Date after current date</title> <script type="text/javascript"> var mydate= new
javascript yesterday date.
javascript yesterday date.  Hi, How can I display the yesterday's... date</title> <script type="text/javascript"> var mydate= new Date...;/head> </html> Description: In javascript whenever you write new Date
javascript current date and time.
javascript current date and time.  How can we display current date and time using javascript?   <html> <head> <title>Current date and time</title> </head> <script type="text/javascript
JavaScript Validate UK Date
JavaScript Validate UK Date  How to Validate UK Date in JavaScript... if (!validformat.test(input.value)) alert('Invalid Date Format. Please correct.') else{ //Detailed check for valid date ranges var
date format in javascript
date format in javascript  display date format as dd/mm/yyyy and day... help me. thank u var date=/^\d{2}\/\d{2}\/\d{4}$/ if(document.userform.joindate.value.search(date)==-1) { alert("please enter date format as dd/mm/yyyy
JavaScript parse date
JavaScript parse date..., you will learn how to parse the date in JavaScript. JavaScript provides the function parse() that takes a date in string format and returns the equivalent
JavaScript Show Date
JavaScript Show Date..., we are going to display the current date using JavaScript. You can see in the given example, we have created Date object which holds the current date and time
start date and end date validation in javascript - Ajax
start date and end date validation in javascript  hi, i am doing web surfing project. pls guide me for my project. i want start date and end validations in javascript. end date should be greater than start date if so less than
javascript date validation using regex
javascript date validation using regex  Hi, I want to validate the date using javascript. Please help.   <html> <head> <title>Validating Date format</title> <script type="text/javascript">
JavaScript calendar date picker
: bold; } .style1 { color: #0000FF; } JavaScript calendar date picker We are going to discus about JavaScript calendar date picker. We have used basic JavaScript date picker functionality. We use drop-down calendar
Date Difference
Date Difference       This example learns how to make the difference between two dates and how... Object class and makes a difference between a Date object and a set of integer
JavaScript Date Function
JavaScript Date Function Many language provide special functions for Date, JavaScript also provides many functions for it. Given examples will illustrate the functions. JavaScript Date Function Example:ADS_TO_REPLACE_1 <html>
Validating date in javascript - Java Interview Questions
Validating date in javascript   Hi Deepak, Can u give sample code validating date in javascript using text box. thank u in advance  In what format you are going to enter the date in Text box (i.e : dd/mm
JavaScript calculate age from date of birth
JavaScript calculate age from date of birth  How to calculate age from date of birth?   <html> <head> <script type="text/javascript"> function ageCount() { var date1 = new Date
JavaScript check if date is between two dates.
JavaScript check if date is between two dates.  Check if date is between two dates?   <html> <head> <title>Date before current date</title> <script type="text/javascript"> function
date_diff
date_diff date_diff alias DateTime::diff returns the difference between two DateTime objects. It returns the difference of two dates, if it exists or return... [, bool $absolute ] ) Parameters datetime - The date to compare
Locale Specific Date validations through JavaScript/Ajax...
Locale Specific Date validations through JavaScript/Ajax...  Hi, I....), how to manipulate date validations through JavaScript or Ajax? Thanks... JavaScript validation, but change the error/information message as per your local
Java Swing Date Difference
Java Swing Date Difference In this tutorial, you will learn how to find the difference between two dates. Here is an example that accepts two dates from... the following method that calculates the date difference in terms of days
difference
difference  difference between hashtable and hashtree
difference
difference  what's the difference between mysql and sql
difference
difference  difference b/w java and asp.net
Difference
Difference  What Is the difference between JDK & SDK
Display current date in text box in JSP using javascript
Display current date in text box in JSP using javascript In this section you will learn how to display current date in text box using JavaScript.For this purpose, we have used JavaScript Date object. The getDate() method returns the day
javascript cal code for selecting date in text field - JSP-Servlet
javascript cal code for selecting date in text field  HI I want javascript calendar code to select date in text field in jsp.pls send me? .../jsp/emp-event.shtml http://www.roseindia.net/javascript/javascript
difference
difference    what is the difference between the JDBC-ODBC bridge, the Native-API-Partly-Java driver, and the JDBC-Net-All-Java Driver is the placement of the database access libraries   Please visit the following link
difference
difference  difference between thread and process in java   Difference between Process and Thread: 1)Process is a program under execution whereas Thread is a part of program. 2)Process are heavy weight programs which
difference
difference  difference between Method Overloading and method Overriding   Difference between Method Overloading and Method Overriding: Overriding is the concept of having functions of same name and signature
Transaction in last 3 months
to calculate amount submitted through transactions in last three months. I have to check the date of all transactions in past 90 days and add the total amount submitted. What query can i use to get all the transactions in past 3 months starting
Javascript get Date And Selected Option Text
Javascript get Date And Selected Option Text In this tutorial we will learn about how to get Date from the textbox and displayed as Date as well as how... explains you that how to display the date and the selected option text in Javascript
date
date  can u tell me how to calculate difference between a user provided date and the system date in java
date
date  i want difference between the date entered in a jtextfield and the system date in java
date
date  can u tell me how to calculate difference between a user provided date and the system date in java
Calculate Month Difference in mysql - SQL
coding for it. it's counting difference between months. but what i want is based on date. eg 2008-05-12 to 2008-09-25(4 months) And it should also take care...Calculate Month Difference in mysql  hi , i am rahul.Can anybody
ModuleNotFoundError: No module named 'months'
ModuleNotFoundError: No module named 'months'  Hi, My Python... 'months' How to remove the ModuleNotFoundError: No module named 'months'... to install padas library. You can install months python with following command
machine learning in 3 months
machine learning in 3 months  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: machine learning in 3 months Try to provide me good examples or tutorials links so that I
machine learning in 6 months
machine learning in 6 months  Hi, I am beginner in Data Science and machine learning field. I am searching for the tutorials to learn: machine learning in 6 months Try to provide me good examples or tutorials links so that I

Ads