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

我的公众号:新语新世界,欢迎关注。