在这个程序里为什么在person 前面加new 不加就不行new 我用 下划线标识

<html>

<body>


<script type="text/javascript">


function person(firstname,lastname,age,eyecolor)

{

this.firstname=firstname

this.lastname=lastname

this.age=age

this.eyecolor=eyecolor

}


myFather=new person("John","Adams",35,"black")


document.write(myFather.firstname + " 的年龄是 " + myFather.age + " 岁。")


</script>


</body>

</html>


慕尼黑9372261
浏览 1334回答 2
2回答

weibo_Highness学

定义了person为一个js对象
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript