I have date in yyyy-mm-dd format. It is found to be ISO Date format. I need to convert it to Long Date format.
eg: I have date as \'2015-07-15\'. The converted date for
I'd use the Moment.js library for this purpose:
console.log(moment("2015-07-15").format("DD MMMM YYYY")); //prints 15 July 2015