console.log(window.innerHeight); window.location.href = "http://google.com";
console.log(document.width); document.body.bgColor = 'red';
<body>
<p>僕の名前は<span id="myName">@yamao</span>です!</p>
<p>価格: <input type="text" id="price">円</p>
<script>
var e = document.getElementById( 'myName' );
e.innnerHTML = 'やまお';
var n = document.getElementById( 'price' );
n.value = 500;
</script>
</body>