基本的な JavaScript で問題が発生しています。
function tank(){
this.width = 50;
this.length = 70;
}
function Person(job) {
this.job = job;
this.married = true;
}
var tank1 = tank();
console.log(tank1.length); //returns: Uncaught TypeError: Cannot read property 'length' of undefined
var gabby = new Person("student");
console.log(gabby.married); //returns: true
最初の console.log は機能しませんが、2 番目の console.log は機能します。私は JavaScript の初心者であり、長さプロパティが定義されていない理由について途方に暮れています。何か助けはありますか?