[JS]あなたのブラウザサイズは…何ピクセル? window.outerWidth

あなたのブラウザサイズは?

縦ピクセル
横ピクセル

JavaScriptコード

画面表示の document.write
アウター横幅は(window.outerWidth);
アウター縦幅は(window.outerHeight);
Window document object model (DOM)


document.write(window.outerHeight);
//document.write(outerピクセル);
//縦ピクセル


document.write(window.outerWidth);
//document.write(outerピクセル);
//横ピクセル

ドットインストールさんを参考にさせていただきました!
https://dotinstall.com/lessons/basic_javascript_v2/26722

MDM Web docs
https://developer.mozilla.org/ja/search?q=window.outerHeight