i have the month and the array list. var month has the date month number. wanted to convert that number to alphabet.
function setDate(data){
var d = new Date(data.event_details.event_start_date);
var month = d.getMonth();
var m = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
console.log(m);
}