摘要:
var student={ name:"马云", say:function(){ console.log(this.name); } } var f=student.say; f.call(student);//马云 f.apply(student);//马云 function Person(name,age){ this.name=name; ... 阅读全文
摘要:
vue源码解析(勾三股四):http://jiongks.name/blog/vue-code-review/ 0、npm: https://www.npmjs.com/ 1、 package.json http://javascript.ruanyifeng.com/nodejs/packagej 阅读全文