<script>
person = new Object()
person.name = "Tim Scarfe"
person.height = "6Ft"
person.run = function() {
this.state = "running"
this.speed = "4ms^-1"}
var obj = new person();
alert(obj.name);
</script>
質問:
コンソール ログに「TypeError: person is not a constructor」と表示されますが、上記のスクリプトの問題は何ですか?