js中使用function定义类、实例化,函数的调用方法

              function Test002(name, age){
name,
age,
this.printInfo = function(){ //定义的公有方法
console.log(name, age);
} }
let test002 = new Test002("weisheng", 32)
test002.printInfo() //打印 weisheng 32


function Test003(name, age){
name;
age;
var printInfo = function(){
console.log(name, age);
} }
let test003 = new Test003("weisheng", 32)
test003.printInfo() //报错,私有方法

js中使用function定义类、实例化,函数的调用方法。

上一篇:出现localStorage错误Link解决方案(组态)


下一篇:实用篇:说说我在JavaScript项目中使用的工具类