Skip to content

Instantly share code, notes, and snippets.

@rkdgusrnrlrl
Created December 30, 2016 02:08
Show Gist options
  • Save rkdgusrnrlrl/10da75e5ce3039f584981d2c5f369bdb to your computer and use it in GitHub Desktop.
Save rkdgusrnrlrl/10da75e5ce3039f584981d2c5f369bdb to your computer and use it in GitHub Desktop.
var date = new Date(), y = date.getFullYear(), m = date.getMonth();
var firstDay = new Date(y, m, 1);
var lastDay = new Date(y, m + 1, 0);
firstDay = moment(firstDay).format(yourFormat);
lastDay = moment(lastDay).format(yourFormat);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment