Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get current date javascript full month

var Xmas95 = new Date();
var options = { month: 'long'};
console.log(new Intl.DateTimeFormat('en-US', options).format(Xmas95));
// December
console.log(new Intl.DateTimeFormat('de-DE', options).format(Xmas95));
// Dezember
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #current #date #javascript #full #month
ADD COMMENT
Topic
Name
4+9 =