Jordan's population surpasses 12 million, DoS says

A general view of Amman (GAM photo)
A general view of Amman (GAM photo)

AMMAN — Jordan's population has reached 12,045,180, ranking 11th among Arab countries and 85th globally, according to population estimates released by the Department of Statistics (DoS).

In a statement issued on Friday to mark World Population Day, observed annually on July 11, the DoS said Jordan has experienced major demographic changes since the second half of the last century, driving significant population growth.

The population increased from 586,000 in 1952 to 11.937 million at the end of 2025 and is projected to reach 12.144 million by the end of 2026, according to the Jordan News Agency, Petra.

The department said that the annual population growth rate currently stands at 1.7 per cent, meaning the population would double in about 40 years if the current rate continues.

According to DoS, population growth has fluctuated over the decades due to changes in fertility, mortality and net migration. The annual growth rate declined from 4.4 per cent between the 1979 and 1994 censuses to 2.6 per cent between 1994 and 2004, before rising to 5.3 per cent between 2004 and 2015 following regional political developments and the influx of Syrian refugees after 2011.

The department attributed improvements in life expectancy to better healthcare services, noting that average life expectancy reached 75.3 years in 2023.

Children under the age of 15 accounted for 34.2 per cent of the population, while people aged 15 to 64 represented 62.1 per cent and those aged 65 and above made up 3.7 per cent.

The demographic dependency ratio stood at 61.4 in 2025, while the average household size declined from 5.4 people in 2004 to 4.8 in 2015.

The infant mortality rate fell from 122 deaths per 1,000 live births during the 1952-1955 period to 14 deaths per 1,000 live births in 2023. Over the same period, the total fertility rate declined from 5.6 children per woman in 1990 to 2.6 in 2023. The DoS attributed the decline in part to the increase in the average age at first marriage for women, which reached 27.5 years in 2024.

The department also linked lower fertility rates to higher female enrolment in higher education and economic factors. The refined economic participation rate for women reached 14.8 per cent in 2025.

In education, the illiteracy rate among Jordanians dropped from 16.7 per cent in 1991 to 4.5 per cent in 2025, while the proportion of Jordanians with a high school education or higher increased to 43.8 per cent.

Globally, the United Nations projects the world's population will reach 8.5 billion by 2030, 9.7 billion by 2050 and more than 10.4 billion by 2100 under its medium-growth scenario.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });