[摘要]本篇文章给大家带来的内容是关于ES6中类和对象的代码示例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。1.基本定义和生成实例{class Parent {constructor(n...
本篇文章给大家带来的内容是关于ES6中类和对象的代码示例,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
1.基本定义和生成实例
{
class Parent {
constructor(name = 'haha') {
this.name = name;
}
}
let parent = new Parent('v');
console.log('构造函数和实例', parent); // Parent {name: "v"}
}