Open the console in chrome (whilst on SO) and copy in innerWidth + \"|\"+outerWidth + \"|\" + screen.width, for me this will return 2133|1920|1920,
If we take the MDN definition of window.outerWidth:
Window.outerWidth read-only property returns the width of the outside of the browser window. It represents the width of the whole browser window including sidebar (if expanded), window chrome and window resizing borders/handles.
And for window.innerWidth:
The read-only Window property innerWidth returns the interior width of the window in pixels. This includes the width of the vertical scroll bar if one is present.