このスニペットの何が問題なのか誰か教えてください。
<!DOCTYPE html>
<html>
<head>
<script>
function anotherWindow(msg, myWidth, myHeight)
{
theWindow=window.open('','','width=myWidth,height=myHeight');
theWindow.document.write(msg);
theWindow.focus();
}
</script>
</head>
<body>
<input type="button" value="One more window" onclick="anotherWindow('Here is the window',200,100)" />
</body>
</html>
最初の引数 (msg) はメソッド .write に正常に渡されますが、メソッド .open のウィンドウ サイズに関連する 2 つの引数は結果をもたらしません。メソッドはいくつかのデフォルトに固執します。
変数の受け渡しに関する私の理解の何が問題になっていますか?