1function getResolution() {
2 const realWidth = window.screen.width * window.devicePixelRatio;
3 const realHeight = window.screen.height * window.devicePixelRatio;
4 console.log(`Your screen resolution is: ${realWidth} x ${realHeight}`);
5}
6
7// test
8getResolution();
9// Your screen resolution is: 3840 x 2160
10
11