JS NAVIGATOR OBJECT PROPERTIES
Run
<!doctype html>
	<head>
		<title>JS Navigator Object Properties</title>
	</head>
	<body>
		<h3>Navigator Object Example</h3>

        <script>
            let appc =  navigator.appCodeName;
            let appn =  navigator.appName;
            let appv =  navigator.appVersion;
            let appco = navigator.cookieEnabled;
            let lan   = navigator.language;
            let onl = navigator.onLine;
            let pla = navigator.platform;
            let usra = navigator.userAgent;
            
            document.write(appc +"<br>");
            document.write(appn +"<br>");
            document.write(appv +"<br>");
            document.write(appco +"<br>");
            document.write(lan +"<br>");
            document.write(onl +"<br>");
            document.write(pla +"<br>");
            document.write(usra +"<br>");
        </script>

	</body>
</html>