次のコードを使用して、変数John
、Mary
およびの平均年齢を計算しようとしましたAhmed
が、うまくいきません。
<!DOCTYPE HTML>
<html>
<head>
<title>This is a page for testing JavaScript</title>
<script>
var John = 23;
var Mary = 25;
var Ahmed = 22;
var average = John + Mary + Ahmed / 3;
console.log(average);
</script>
</head>
<body>
<p>
JavaScript testing page, open the console and reload the page to see whats happening!
</p>
</body>
</html>
私はいろいろ試してみて、最終的に sum 変数を含む行を追加することで正しい方法を見つけました。
var sum = John + Mary + Ahmed; var average = sum / 3
なぜ私の最初の試みがうまくいかなかったのか疑問に思っていましたか?