Связь | Регистрация | Вход
n/a
حساب موعد الولادة المتوقع حساب موعد الولادة المتوقع تاريخ آخر دورة شهرية: مدة الدورة الشهرية (بالأيام): احسب الموعد المتوقع function calculateDueDate() { const lastPeriodDate = new Date(document.getElementById("lastPeriod").value); const cycleLength = parseInt(document.getElementById("cycleLength").value); if (!isNaN(cycleLength)) { const estimatedDueDate = new Date(lastPeriodDate.getTime() + (cycleLength * 24 * 60 * 60 * 1000 * 7)); const options = { year: 'numeric', month: 'long', day: 'numeric' }; const formattedDueDate = estimatedDueDate.toLocaleDateString('ar-EG', options); document.getElementById("result").textContent = "الموعد المتوقع للولادة هو: " + formattedDueDate; } else { document.getElementById("result").textContent = "الرجاء إدخال مدة الدورة الشهرية بشكل صحيح."; } }