<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
function Star(uname, age, sex) {
this.name = uname;
this.age = age;
this.sex = sex;
}
var ldh = new Star('刘德华',18,'男');
console.log(ldh.name);
console.log(ldh['sex']);
var zxy = new Star('张学友',19 ,'男');
console.log(zxy.name);
console.log(zxy.age);
</script>
</body>
</html>
版权声明:本文为weixin_50266677原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。