Skip to content

Instantly share code, notes, and snippets.

@matkl
Created July 20, 2016 03:06
Show Gist options
  • Save matkl/dfc3990ba489e59c168461e34e3ef6c0 to your computer and use it in GitHub Desktop.
Save matkl/dfc3990ba489e59c168461e34e3ef6c0 to your computer and use it in GitHub Desktop.
Get first day of month in JavaScript
export default function getFirstDateOfMonth() {
const now = new Date();
return new Date(now.getFullYear(), now.getMonth());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment