Question

I am using MomentJS to display a date.

moment(startDate).format('lll')

This will display: Jan 29 2014 03:04

But I would like to remove the year which is "2014" how can I do that?

Here is the link to the momentjs

MomentJS

Était-ce utile?

La solution

I haven't used that library before, but try this:

moment(StartDate, "MMM DD HH:mm");

At least this would work in .NET.

Autres conseils

What you want is:

moment(startdate).format('MMM DD h:mm A');

See a javascript example:

http://jsfiddle.net/remus/rLjQx/

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top