const date = new Date(2023, 02, 23); const month = date.toLocaleString('en-US', {month:'long'}); const day = date.toLocaleString('en-US', {day:'2-digit'}); const year = date.getFullYear();