ES6 class学习笔记
Posted RunningAndRunning
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES6 class学习笔记相关的知识,希望对你有一定的参考价值。
ES5中生成实例对象的方法是通过构造函数:
function Person(name, age){ this.name = name this.age = age } Person.prototype.sayName = function () { console.log(this.name) }
ES6中添加新的语法生成对象实例:
class Person { constructor (name, age) { this.name = name this.age = age } sayName () { console.log(this.name) } }
以上是关于ES6 class学习笔记的主要内容,如果未能解决你的问题,请参考以下文章