<!DOCTYPE html>
<html>
<body>
<h2>JavaScript const</h2>
<p>定数オブジェクトを宣言しても、オブジェクトのプロパティが変更不可能になるわけではありません。</p>
<p id="demo"></p>
<script>
// オブジェクトを作成します。
const car = {type:"フィアット", model:"500", color:"white"};
// プロパティを変更します。
car.color = "red";
// プロパティを追加します。
car.owner = "Johnson";
// プロパティを表示します。
document.getElementById("demo").innerHTML = "車の所有者は、" + car.owner;
</script>
</body>
</html>