Order now and your order ships by function getFutureDate(days) { const date = new Date(); date.setDate(date.getDate() + days); const options = { weekday: 'short', month: 'short', day: '2-digit' }; return date.toLocaleDateString('en-US', options); } document.getElementById("future-date").textContent = getFutureDate(14);