javascript get device width and height code example
Example 1: device width js
window.screen.availWidth
Example 2: check device width using js
const screenWidth = window.screen.width;
const screenHeight = window.screen.height;
window.screen.availWidth
const screenWidth = window.screen.width;
const screenHeight = window.screen.height;