VS Code tips: Convert ES5 class to ES6 class code action (ok)
Previous====== Start Convert ES5 class to ES6 class ====Next====== End Convert ES5 class to ES6 class ====
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
function Cat(name, age=1) {
this.name = name;
this.age = age;
}
Cat.prototype.speac = function() {
console.log("aaaaaaa");
}
const cat = new Cat("Boris",2);function Cat(name, age=1) {
this.name = name;
this.age = age;
}
Cat.prototype.speac = function() {
console.log("aaaaaaa");
}
const cat = new Cat("Boris",2);