Skip to content

Instantly share code, notes, and snippets.

@W3BGUY
Created November 16, 2016 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save W3BGUY/8970caee26d1059bbbafb7375cfec557 to your computer and use it in GitHub Desktop.
Save W3BGUY/8970caee26d1059bbbafb7375cfec557 to your computer and use it in GitHub Desktop.
NetSuite Get Number of Days in Month
// function to figure out the number of days in month.
function getDaysInMonth(thisMonth,thisYear){
var monthArray=[31,28,31,30,31,30,31,31,30,31,30,31];
if(thisMonth!=2){return monthArray[thisMonth-1]};
if(thisYear%4!=0){return monthArray[1]};
if(thisYear%100==0 && thisYear%400!=0){return monthArray[1]};
return monthArray[1]+1;
}
// NetSuite usage example
nlapiLogExecution('DEBUG',getDaysInMonth(11,2016))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment