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 get list item entity type full name of a SharePoint list using REST API ?

REST API to get list item entity type full name: Bullet method (small and accurate): siteurl( AbsoluteUrl ) + /_api/Web/Lists/getbytitle('ListName')/ListItemEntityTypeFullName or   _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getbytitle('SPList')/items?select=EntityTypeFullName **Use this above API just replacing absolute site URL and list name **Then put this prepared URL into browser and press enter button and obtain list entity type full name of related list. **You will get ListEntityTypeFullName like " SP.Data.EmployeeListItem " **Employee(may be a list name) How it is? Is it working or not you can tell us using comment section ?

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' :  {             ...