I need to group a bunch of items in my web app by date created.
Each item has an exact timestamp, e.g. 1417628530199. I\'m using Moment.js and its \"tim
1417628530199
Here is a clean way to get just the date in one line with no dependencies:
let d = new Date().setHours(0, 0, 0, 0);