xxxxxxxxxx
<html>
<body>
<h1>JavaScript Get Page Port</h1>
<p>You can use the "window.location.port" attribute
to get the port number from the page URL.</p>
<p id="demo"></p>
<script>
// demo في متغير إسمه demo يساوي id هنا قمنا بتخزين العنصر الذي يملك
var demo = document.getElementById('demo');
// demo هنا قمنا بعرض رقم البورت المستخدم لجلب الصفحة في العنصر الذي يمثله المتغير
// و النتيجة ستكون نص فارغ لأن رقم البورت الإفتراض للصفحة هو 443 و المتصفح لا يظهره
demo.innerHTML = 'Page port: ' + window.location.port;
</script>
</body>
</html>