ES6中的类

昨天小编更新了一下关于es5中的类的处理,也顺便将es5中类的知识和语法简单回顾一下,今天小编将es6中的与类相关的语法和大家一起探讨一下。在es6中,对类的实现主要是引入关键字class和extends。下面是一些例子。大家也可以关注我的微信公众号,蜗牛全栈。

一、类的创建

class People{ constructor(name,age){ this.name = name this.age = age } showName(){ console.log(this.name) } } let p1 = new People("lilei",34) console.log(p1) // People{name:"lilei",age:34}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyxpxd.html