ItSolutionStuff.com

JQuery Moment Add Year to Date Example

By Hardik Savani β€’ December 30, 2020
jQuery

Hello Dev,

This article will provide some of the most important example jquery moment add year. This article will give you simple example of how to add year to current date in jquery. let’s discuss about how to add years in date in moment js. i explained simply about how to add 1 year in current date in jquery moment. Let's get started with add year using moment.js.

Here, i will give you simple example of jquery moment js add() method for add year to date and jquery moment js subtract() method for subtract year from date.

let's see both example with output:

Example 1: Add Year to Date

<!DOCTYPE html>

<html>

<head>

<title>JQuery Moment Add Year Example - ItSolutionStuff.com</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" crossorigin="anonymous"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" crossorigin="anonymous"></script>

</head>

<body>

<h1>JQuery Moment Add Year Example - ItSolutionStuff.com</h1>

</body>

<script type="text/javascript">

var startdate = '26-12-2020'

var newDate = moment(startdate, "DD-MM-YYYY").add(3, 'years').format('DD/MM/YYYY');

console.log(newDate);

</script>

</html>

Output:

26/12/2023

Example 2: Subtract Year to Date

<!DOCTYPE html>

<html>

<head>

<title>JQuery Moment Add Year Example - ItSolutionStuff.com</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" crossorigin="anonymous"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" crossorigin="anonymous"></script>

</head>

<body>

<h1>JQuery Moment Add Year Example - ItSolutionStuff.com</h1>

</body>

<script type="text/javascript">

var startdate = '26-12-2020'

var newDate = moment(startdate, "DD-MM-YYYY").subtract(3, 'years').format('DD/MM/YYYY');

console.log(newDate);

</script>

</html>

Output:

26/12/2017

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

JQuery Moment Add Month to Date Example

Read Now β†’
β˜…

JQuery Moment Subtract Days to Date Example

Read Now β†’
β˜…

JQuery Moment Add Days to Date Example

Read Now β†’
β˜…

JQuery Moment Get Current Date Example

Read Now β†’
β˜…

How to Install and Use Moment JS in Laravel?

Read Now β†’
β˜…

How to Change Date Format using Moment in Vue JS?

Read Now β†’
β˜…

How to Change Date Format in JQuery?

Read Now β†’
β˜…

Laravel Carbon Get Year, Month and Day from Timestamp Example

Read Now β†’
β˜…

How to Change Date Format using Date Filter in AngularJS?

Read Now β†’
β˜…

How to Get Hours Difference Between Two Dates in Laravel?

Read Now β†’