JavaScript navigator.language Property
You are Here:
JavaScript navigator.language Property
The navigator.language
property returns the language version of the browser.
Note: This property is read-only.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
document.write("Browser Language: "+navigator.language);
</script>
</body>
</html>
Syntax
navigator.language
Return Value
Value | Explanation |
---|---|
String | Returns a string representing the language version of the browser. For example
|
More Examples
Examples
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
var txt = "";
txt += "<p>Browser Name: "+navigator.appName+"</p>";
txt += "<p>Browser CodeName: "+navigator.appCodeName+"</p>";
txt += "<p>Browser Version: "+navigator.appVersion+"</p>";
txt += "<p>Cookies Enabled: "+navigator.cookieEnabled+"</p>";
txt += "<p>Browser Language: "+navigator.language+"</p>";
txt += "<p>Browser Online: "+navigator.onLine+"</p>";
txt += "<p>Platform: "+navigator.platform+"</p>";
txt += "<p>Browser's Engine Name: "+navigator.product+"</p>";
txt += "<p>User-agent header: "+navigator.userAgent+"</p>";
txt += "<p>Java Enabled: "+navigator.javaEnabled()+"</p>";
document.write(txt);
</script>
</body>
</html>
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.