Skip to content

Instantly share code, notes, and snippets.

@elclanrs
Created October 15, 2012 05:23
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 elclanrs/3890921 to your computer and use it in GitHub Desktop.
Save elclanrs/3890921 to your computer and use it in GitHub Desktop.
function convertMonthToName( val ) {
var months = [ 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' ];
return months[ val-1 ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment