1.Class类的介绍 在ES6中新增了Class类的概念,让语法看起来更像是面向对象编程,其实这可以说是一个语法糖,ES5可以做到Class绝大部分功能,但也有一些不同.在ES6以前,可以通过构造函数来模拟类的概念,如下所示 function Student(name,age){ this.name = name; this.age = age; } Student.prototype = { constructor:Student, show:function(){ console.log(…