Selenium Java - JavaScriptExecutor
What will be the output of the following Selenium Java code snippet?
JavascriptExecutor js = (JavascriptExecutor) driver;
Long height = (Long) js.executeScript("return window.innerHeight;");
System.out.println(height);