Languages
[Edit]
EN

JavaScript - get first day of month

0 points
Created by:
Mikolaj
489

In this article, we would like to show you how to get first day of month in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

let date = new Date('Mon Aug 02 2021');
let firstDay = new Date(date.getFullYear(), date.getMonth(), 1);

console.log(firstDay); // Sun Aug 01 2021

 

Practical example

In this example, we use:

  • date.getFullYear() - to get the year of the specified date,
  • date.getMonth() - to get the month of the specified date,
  • 1 in the Date() constructor stands for the day of the month.
// ONLINE-RUNNER:browser;

let date = new Date('Mon Aug 02 2021');
let firstDay = new Date(date.getFullYear(), date.getMonth(), 1);

console.log(firstDay); // Sun Aug 01 2021

Output:

Sun Aug 01 2021 00:00:00 GMT+0200 (Central European Summer Time)

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join