Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get full month from date javascript

//Get full month from date javascript
const date = new Date(2009, 10, 10);  // 2009-11-10
const month = date.toLocaleString('default', { month: 'long' });
console.log("Result - ", month); // Result - November
Source by melvingeorge.me #
 
PREVIOUS NEXT
Tagged: #full #month #date #javascript
ADD COMMENT
Topic
Name
9+8 =