//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