Is there a way to format dates like "a few seconds ago", "10 minutes ago", "a day ago" using momentjs in the browser?
var date = moment('2017-01-10T13:53:00');
date = moment(date).fromNow();
When I use date
, it shows "in 14 minutes" instead of "14 minutes ago". How can I make it display correctly?