# 构造函数的使用
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Document</title> 8 <script> 9 // 构造函数的执行流程 10 // 1立刻创建一个函数对象 11 // 2将新建的对象设置为函数中的this 12 // 3逐行执行函数中的代码 13 // 4将新建的对象作为返回值返回 14 // 构造函数就是类 15 function Person(name,age) { 16 this.name = name 17 this.age = age 18 19 } 20 const fun1 = new Person('孙悟空',23) 21 console.log(fun1.name); 22 console.log(fun1 instanceof Person); // 判断一个实例是否是属于该构造函数(类) 23 </script> 24 </head> 25 <body> 26 27 </body> 28 </html>