moonburn

Results 1 comments of moonburn

我觉得class不仅仅是个语法糖,应该还是加了一些东西的。 ``` class A extends Array {}; var a = new A; var B = function () {}; B.prototype = Object.create(Array.prototype); var b = new B; var c = new...