Understanding ECMAScript 6 阅读问题小记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Understanding ECMAScript 6 阅读问题小记相关的知识,希望对你有一定的参考价值。
拖了一年说要看这本书,一直都没坚持下来,开个 bo 记录下觉得疑惑的问题,也算鞭策一下自己。
1. 第一章“块级绑定”下,说 const 变量如果绑定的是对象 Object,那么修改里面的值是容许的。这个原因是 const 阻止的是绑定的修改,而不是绑定值的修改。
原文:const
prevents modification of the binding, not modification of the bound value.
什么叫做绑定?什么叫做绑定值?跟内存地址有关?
2. 描述 let 和 const 声明的变量为何在声明前不可访问的现象时经常用到的术语 —— 暂存性死区(Temporary Dead Zone)
3. ES6之前解决循环中调用循环索引的问题是用即时调用函数表达式(immediately-invoked function express,IIFEs)
有哪些 IIFE 的例子?为什么用 IIFE 可以保证每次循环索引不共用?
以上是关于Understanding ECMAScript 6 阅读问题小记的主要内容,如果未能解决你的问题,请参考以下文章
PyTorch 101 Part 1: Understanding Graphs, Automatic Differentiation and Autograd