
<!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 Person(name,age,sex,hobby){
this.name = name;
this.age = age;
this.sex = sex;
this.hobby = hobby;
}
var tony = new Person('孔艺蕊',20,'女',);
let time = new Date()
console.log(time.toLocaleString());
console.log(tony.name);
console.log(tony.age);
console.log(tony.sex);
console.log(tony.hobby);
</script>
<h2>单机按钮显示</h2>
<button>显示:</button>
</body>
</html>