在ES5中我们通常通过构造函数,定义并生成新对象。例如:``` function Point(name,age){ this.name=name; this.age=age; } Point.prototype={ Who:function(){ return "My name is "+this...
1\. 生成器函数声明 function name(args){}; 2\. yield使用```function hello(){ console.log('before hello'); //可看到hello()并不会立刻执行函数, 到第一次next调用时才会 var name = yield 'please input your name'...
最新评论