-5

I want to convert this date 16:07:19 to format as July 19, 2016 in javascript. Should i implement the complete functionality or do we have any readily available thing to use in javascript to do the same? Kindly help. Thanks in advance!

Anita
  • 185
  • 1
  • 6
  • 24

1 Answers1

-1

You could use something like moment.js

Than you could do for instance

moment('2016-01-01').format('MM/DD/YYYY');
Felix
  • 5,451
  • 1
  • 10
  • 17