摘要: ```javascript /** * es5:class 对象 */ function Car(option) { this.title = option.title; this.lunz = option.lunz; } Car.prototype.drive = function () { return this.title + " is drive.."; } const car = ne 阅读全文
posted @ 2019-12-29 23:19 【唐】三三 阅读(195) 评论(0) 推荐(0)