xxxxxxxxxx
<html>
<body>
<h1>JavaScript Get Platform</h1>
<p>You can use the "navigator.platform" attribute
to get the platform on which browser is running.</p>
<p id="platform"></p>
<script>
// platform في متغير إسمه platform يساوي id هنا قمنا بتخزين العنصر الذي يملك
var platform = document.getElementById('platform');
// platform هنا قمنا بعرض إسم نظام التشغيل الخاص بالمستخدم في العنصر الذي يمثله المتغير
platform.innerHTML = 'Operating system: ' + navigator.platform;
</script>
</body>
</html>