以下は、nameプロパティを出力することを目的としたコードアカデミーのコーディング演習です。エラーを説明してください、どうすれば修正できますか?コメントのように配列内のJavascriptオブジェクト
// Our Person constructor
function Person(name, age) {
this.name = name;
this.age = age;
}
var family = new Array();
family[0] = new Person("alice", 40);
family[1] = new Person("bob", 42);
family[2] = new Person("michelle", 8);
family[3] = new Person("timmy", 6);
for (var i = 0; i <= family.length; i++) {
console.log (family[i].name);
};
// Now we can make an array of people
// loop through our new array
OUTPUT :
alice
bob
michelle
timmy
---
We're running a test below to make sure your code works.
alicebobmichelletimmy
TypeError: Cannot read property 'name' of undefined
------------------------------------------
Many thanks.
チェックは、配列の境界。 –
@mparnisari:はい、OPは境界を使い果たしています。 'i
SuperSaiyan
私は知っている、私は彼/彼女がそれに気付くことを望んだ:) –