ItSolutionStuff.com

Moment Get Current Week Number Example

By Hardik Savani • January 9, 2021
jQuery

This article will give you example of moment get current week number. I’m going to show you about how to get current week number in moment js. This post will give you simple example of moment js get current week number. you will learn jquery moment get current week number.

Here, i will give you simple example of jquery moment js get current week number using week().

let's see both example with output:

Example:

<!DOCTYPE html>

<html>

<head>

<title>jquery moment 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 example - ItSolutionStuff.com</h1>

</body>

<script type="text/javascript">

var weekNumber = moment('02-01-2021', 'DD-MM-YYYY').week();

console.log(weekNumber);

var weekNumber = moment().week();

console.log(weekNumber);

</script>

</html>

Output:

1

2

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

ā˜…

Moment Difference Between Two Dates in Hours Minutes and Seconds

Read Now →
ā˜…

Moment JS Difference Between Two Dates In Years, Months, Days

Read Now →
ā˜…

Moment JS Check if Date is Future or not Example

Read Now →
ā˜…

Moment JS Humanize Duration | Moment fromNow() Example

Read Now →
ā˜…

Moment JS Get Last Date of Month Example

Read Now →
ā˜…

Moment JS Get Month Name from Number Example

Read Now →
ā˜…

JQuery Moment JS Subtract Hours to Datetime Example

Read Now →
ā˜…

JQuery Moment Add Hours to Datetime Example

Read Now →
ā˜…

JQuery Moment Add Days to Date Example

Read Now →