摘要: "use strict"; function Greet(name) { this.name = name; this.sayHello = function () { console.log("Hello " + this.name); }; } var greet = new Greet("to 阅读全文
posted @ 2018-08-05 10:40 yasepix 阅读(101) 评论(0) 推荐(0) 编辑