Can i get DateTime
string into desired format.
I want to get current Date
into this format July 24th
.
How can i get this format using jquery/javascript?
I know about the Jquery DateTime
, but i did't find way to convert this into this July 24th
format.
My code -
var CurrentDate = new Date();
CurrentDate.format("MMMM dd");
but this code always give me - July 24
. How can i convert into my desired format.
Thanks for help, any help will be appreciable.