私のコードの周囲は常に2020 4040のように戻ってくるので、なぜ変数が両方の数値であるのかわかりません。私はそれがかなり単純な修正だと知っていますが、私はそれを理解できません。私はparseIntを試みたが、それはどちらもうまくいかなかった。誰かが私の周りに幅と高さのために10と10を使って40と言うように追加または変更する必要があることを私に説明するのを助けることができますか?なぜ私の変数は一緒に追加されるのではなく、お互いにつながりますか?
<head>
<meta charset="utf-8" />
</head>
<body>
<p>Click the button to calculate the area and perimeter of a rectangle.</p>
<button onclick="myFunction()">Try it out!</button>
<script>
function myFunction() {
var width = prompt("Please enter a width", " ");
var height = prompt("Please enter a height", " ");
var area = width * height;
var perimeter = (width + height) * 2;
if (width != null && height != null) {
alert("The area is " + area + " and the perimeter is " + perimeter + ".");
}
}
</script>
</body>
</html>
'prompt'は常に文字列を返し、' + 'は文字列を連結するために使用されます。数を行う前に数値を数値に変換します。 – Teemu
prompt()は 'String'を返します。文字列の+演算子は、文字列連結と同じです。幅と高さを 'Number'に変換する必要があります。 –
私は** this **:http://jsbin.com/xuzijopade/1/edit?js,output – balexandre