The Screen.availWidth property returns the amount of horizontal space (in CSS pixels) available to the window.
Screen.availWidth
A number.
const screenAvailWidth = window.screen.availWidth; console.log(screenAvailWidth);