In a column, I have a date like 3/15/2020 20:41:29
Now how I can extract the month in MMM (like Jan, Feb, Mar etc) format.
The following I have tried but only get the month in integer and not in text form.
 var date = new Date("3/20/2020 20:41:29");
 var month = date.getMonth()+1;
but the output is 3 and not Mar (as in March).
How to get the month name like Mar, Apr, Jun etc.
 
     
    