Ans : किसी browser के width को window width कहते हैं। window width दो प्रकार के होते हैं ।
for outer width
window.outerWidth
for inner width
window.innerWidth
Ans : किसी browser के height को window height कहते हैं। window height दो प्रकार के होते हैं।
for outer Height
window.outerHeight
for inner Height
window.innerHeight
HTML Code
<html>
<!--head section-->
<head>
<title>Official Website Teach Coders</title>
<meta name="description" content="Teach Coders" />
<meta name="keywords" content="Teach Coders" />
</head>
<body>
</body>
</html>
----------------------------------------------------------
EXAMPLE 1 : windowWidth & windowHeight
----------------------------------------------------------
<script>
var a = window.outerWidth;
console.log("outer Width :" + a);
var b = window.innerWidth;
console.log("inner Width :" + b);
var c = window.outerHeight;
console.log("outer Height :" + c);
var d = window.innerHeight;
console.log("inner Height :" + d);
</script>
</script>
Css Code
<style>
</style>