Skip to content

Instantly share code, notes, and snippets.

@DejanBelic
Last active June 7, 2018 12:38
Show Gist options
  • Save DejanBelic/98c7f5a3c10df05008831f20af09cf42 to your computer and use it in GitHub Desktop.
Save DejanBelic/98c7f5a3c10df05008831f20af09cf42 to your computer and use it in GitHub Desktop.
MomentJS get today date.
// MomentJS library.
// Filter array and get only items that are from today (date).
var getTodayEvents = someArray.filter(todayDate => moment(todayDate.start.format("YYYY-MM-DD")).isSame(moment().format("YYYY-MM-DD")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment