You can use the built-in date functions of Javascript and get the desired output. Like below code snippet:
const months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ];
let date = new Date();
// For Jan month, getMonth will return 0.
const currentMonth = date.getMonth();
const dateStr = months[currentMonth] + date.getFullYear();
console.log(dateStr);
JS Fiddle: https://jsfiddle.net/sagarag05/1bsj39ah/7/
Kindly note, the month names are in English. So they are not localised in case if you have those constraints, that is not considered here.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…