ReadonlyavailThe read-only Screen interface's availHeight property returns the height, in CSS pixels, of the space available for Web content on the screen. Since Screen is exposed on the Window interface's window.screen property, you access availHeight using window.screen.availHeight.
ReadonlyavailThe Screen.availWidth property returns the amount of horizontal space (in CSS pixels) available to the window.
ReadonlycolorThe Screen.colorDepth read-only property returns the color depth of the screen. Per the CSSOM, some implementations return 24 for compatibility reasons. See the browser compatibility section for those that don't.
ReadonlyheightThe Screen.height read-only property returns the height of the screen in CSS pixels.
ReadonlyorientationThe orientation read-only property of the Screen interface returns the current orientation of the screen.
ReadonlypixelReturns the bit depth of the screen. Per the CSSOM, some implementations return 24 for compatibility reasons. See the browser compatibility section for those that don't.
ReadonlywidthThe Screen.width read-only property returns the width of the screen in CSS pixels.
The
Screeninterface represents a screen, usually the one on which the current window is being rendered, and is obtained using window.screen.MDN Reference