I have a variable in my program that stores the date in the form of 2018-04-21. Now, how do I change the value into something like 21st April, 2018?
I need something like:
var date = stringifyTheDate(actual_date);
What should I include in the stringifyTheDate
function to do that?