如果你特别喜欢一个人 那么你一定配不上他、、、 患得患失 瞻前顾后 反倒丢失了当下天生我才必有用,却一直不知怎么用, 别让任何人打乱你的人生节奏 I know people who graduted at 21 and didn't get a job until they were 27 I kn ...
分类:
其他好文 时间:
2018-10-06 11:54:11
阅读次数:
330
前2章探索了this绑定指向不同的对象需要函数引用的call-site。 但是什么是对象,为什么我们需要指向它们? 本章探索细节。 Syntax Type Build-in 对象 Contents Computed Property Names Property vs. Method Arrays ...
分类:
Web程序 时间:
2018-10-05 20:22:45
阅读次数:
175
We strongly recommend that you pick either Keras or PyTorch. These are powerful tools that are enjoyable to learn and experiment with. We know them bo ...
分类:
其他好文 时间:
2018-10-05 16:12:13
阅读次数:
175
this is a binding made for each function invocation, based entirely on its call-site (how the function is called). this是为函数被引用而创建的绑定!完全地基于函数如何被调用/函数的c ...
分类:
Web程序 时间:
2018-10-05 14:04:56
阅读次数:
171
Foreword this 关键字和prototypes 他们是用JS编程的基础。没有他们创建复杂的JS程序是不可能的。 我敢说大量的web developers从没有建立过JS Object,仅仅对待这门语言作为一个事件绑定胶水,在按钮和Ajax请求之间。 我也曾是他们的一员,但是当我了解到如何掌 ...
分类:
Web程序 时间:
2018-10-04 23:01:13
阅读次数:
232
JavaScript只有Lexical Scope 模式 Lexical Scope就是在写代码的时候,定义函数的时候创建的作用域! 而动态作用域是在runtime时,函数被调用的地方的作用域! 实际上 dynamic Scope是 this关键字的近亲。这会在this & Object Proto ...
分类:
Web程序 时间:
2018-10-04 18:56:00
阅读次数:
184
Chapter 5: Scope Closure 我们到达这里时,已经对作用域如何工作有了非常健康稳固的理解。 下面,我们转移注意力到一个及其重要,但长期难以理解,几乎是神话中的部分语言:Closure! Enlightenment Nitty Gritty Now I Can See Loops ...
分类:
Web程序 时间:
2018-10-04 10:37:29
阅读次数:
190
Dialogue between Jack and Rose Rose : It's getting quiet. 越来越安静了 Jack : It's gonna take a couple of minutes to get the boats organized.I don't know ab ...
分类:
其他好文 时间:
2018-10-04 10:07:55
阅读次数:
243
Chapter4: Hoisting 变量附加到哪个层次的scope,由它们在哪里和如何声明(let, var)来决定。 Function scope/Block scope都有相同的法则:任何变量在一个scope内声明,则这个变量附加到这个作用域上。 但有一个细节问题:当声明declaration ...
分类:
Web程序 时间:
2018-10-04 09:48:41
阅读次数:
185
第二章,作用域由一系列的bubbles组成。每一个都代表了一个container或bucket,装着被声明的identifiers(variables, functions)。这些bubbles相互嵌套。这种嵌套是在开发阶段写完的。 什么制造了一个新的bubble? 只是函数吗?其他的JS结构可以创 ...
分类:
Web程序 时间:
2018-10-03 00:30:04
阅读次数:
156