我想打電話給age
,name
和height
在一起,從只有1名爲this.anh
從名爲person
函數變量。 我寫清單的方式是錯誤的,但是正確的符號是什麼?如果有多種方式,請寫下來。 :)構建功能和它的變量
<script type="text/javascript">
function person(age, name, height){
this.age = age;
this.name = name;
this.height = height;
this.anh = age, name, height;
}
var koolz = new person(20,"koolz",200);
document.write(koolz.anh)
</script>
預期的結果是什麼? '「20,koolz,200」'? –
是的!那就對了! @EliasSoares – KOOLz