:麻煩,我遇到一些麻煩一些基本的javascript一些基本的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不工作,但第二的console.log作品。我是一個JavaScript初學者,並且對於長度屬性爲什麼沒有定義我不知所措。任何幫助?