摘要:
理解Javascript的闭包非常关键,本篇试图用最简单的例子理解此概念。function greet(sth){ return function(name){ console.log(sth + ' ' + name); }}//hi darrengreet('hi')(... 阅读全文
摘要:
在Javascript中,bind, apply, call方法都可以显式绑定上下文this,这三者有何不同呢?bind只绑定this不马上执行var person = { firstname: 'darren', lastname: 'ji', getFullName: func... 阅读全文