Atom 是 github 内部的编辑软件。按照 Github 的说法,这是一款非同一般的编辑器,是 21 世纪的创新产品,他们希望将来“从菜鸟到黑客都在使用 Atom 编写代码”。
Atom 是 github 内部的编辑软件。按照 Github 的说法,这是一款非同一般的编辑器,是 21 世纪的创新产品,他们希望将来“从菜鸟到黑客都在使用 Atom 编写代码”。
what is this? 在 javascript 中,每个 function 都有一个 this 关键字的隐私绑定。当调用某个 function 时,这个 function 的 this 绑定将会被确定。
eg-1:1
2
3
4
5
6function test() {
console.log('this is ---', this);
}
test();
// this is ---Window {top: Window, window: Window, location: Location, external: Object, chrome: Object…}
eg-2:1
2
3
4
5
6
7
8var test2 = {
console: function () {
console.log('this is ---', this);
}
};
test2.console();
// this is ---Object {console: function}
借助着开源,搭建好了自己的博客。以后将会在这里,记录知识和回忆。
感谢 Hexo,感谢 NexT.Mist,感谢 GitHub,感谢 Markdown,感谢开源组织。