<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
function User(name, age, sex) {
this.name = name;
this.age = age;
this.sex = sex;
}
var newfun = new User("小红", 15, "男");
User.prototype.fangfa = function () {
console.log(
"大家好,我叫" +
this.name +
",今年" +
this.age +
"岁,是个" +
this.sex +
"生"
);
};
newfun.fangfa();
</script>
</body>
</html>