Skip to main content

How to get month name from a Date in JavaScript ?

Get Month name from a Date in JavaScript:







var date = "2019/04/15";   //date in yyyy/mm/dd
or
var date ="2019-04-15";
or
var date = "2019,04,15";
var indx = new Date(date).getMonth(); //It will give month name in code or as a Index;
//getMonth is function which returns month as an integer from 0-11
Now create an Array of Month 

const months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];

var monthName=months[indx];
console.log(monthName);

Output:
April

OR

var arrDate = "2010-09-01 00:00:00.0".split("-");
var months = ["January", "February", "March", "April", "May", "June",
    "July", "August", "September", "October", "November", "December" ];
var index =  parseInt(arr[1],10) - 1;

console.log( months[index]);

Output:
September

OR

var arrMonth = ['Jan', 'Feb', 'Mar', 'Apr, 'May', 'Jun', 'July, 'Aug', 'Sep', 'Oc', 'Nov', 'Dec'];
var date= new Date( "December 25, 1995 23:15:00" );
var monthIndx=date.getMonth();
console.log('Name of the month is :" +arrMonth[monthIndx]);
Output:
Dec

OR

var date= new Date("04/15/2009"),     //date in mm/dd/yyyy
    locale = "en-us",
    month = date.toLocaleString(locale, { month: "long" });

console.log(month);
//April

/* or if you want the shorter month name:
console.log(date.toLocaleString(locale, { month: "short" }));
Apr */

Output:
April

Comments

Popular posts from this blog

How to send email using SharePoint REST API in jQuery/JavaScript?

  Send email using SharePoint REST API in jQuery/JavaScript: We can able to send email to the SharePoint user using below REST API on SharePoint Online. We need to load SP.js file in code. we must need to give valid SharePoint user to send email. We can able to send email to valid SharePoint user of same organization.      var   restAPI  =  _spPageContextInfo . webAbsoluteUrl  +  "/_api/SP.Utilities.Utility.SendEmail" ;      $ . ajax ({          contentType:   'application/json' ,          url:   restAPI ,          type:   "POST" ,          data:   JSON . stringify ({              'properties' :  {             ...

How to get all site users of SharePoint using REST API?

Get all users of SharePoint site using REST API: These users and its data are required to update people field of a SharePoint list. By using below snippet code we can able to get details of a user of SharePoint site.     var webURL = _spPageContextInfo.webAbsoluteUrl+"/_api/Web/SiteUsers";         $.ajax({           url: customFieldURL,           method: "GET",           headers: {             "Accept": "application/json; odata=verbose"           },           success: function (data) {            console.log(data);             data.d.results.forEach(function(cm){                     console.log(cm.Title+" - "+cm.Email+" - "+cm.Id);             });      ...