我理解为什么var取这个名字-它是变量,const -它是常量,但是let这个名字背后的含义是什么,它的作用域是当前块?顺其自然?
当前回答
它的作用与var的作用完全相同。现在它不能取名称var,因为已经取了。
所以它看起来已经采取了下一个最好的名字,在一个有趣的英语语言结构中有一个语义。
let myPet = 'dog';
在英语中它说“让我的宠物是一只狗”
其他回答
除了exebook的响应外,关键字let的数学用法也很好地封装了let在Javascript/ES6中使用时的作用域含义。具体来说,就像下面的ES6代码在输出'Hello World'的值时不知道topprint的大括号中的赋值一样,
let toPrint = 'Hello World.';
{
let toPrint = 'Goodbye World.';
}
console.log(toPrint); // Prints 'Hello World'
let as used in formalized mathematics (especially the writing of proofs) indicates that the current instance of a variable exists only for the scope of that logical idea. In the following example, x immediately gains a new identity upon entering the new idea (usually these are concepts necessary to prove the main idea) and reverts immediately to the old x upon the conclusion of the sub-proof. Of course, just as in coding, this is considered somewhat confusing and so is usually avoided by choosing a different name for the other variable.
设x为某某…
证明的东西
新想法{让x成为别的东西……证明某事结论新想法
用旧x证明主要思想
我想这是遵循数学传统的。在数学中,我们常说"设x为任意实数"之类的。
我认为JavaScript对Scheme的亏欠是显而易见的。Scheme不仅有let,还有let*、let*-values、let-syntax和let-values。(参见方案编程语言,第4版)。
(这个选择进一步证明了JavaScript是Lispy,但是——在我们失去理智之前——并不是同源的。))))
它也可以指“词汇环境类型或绑定”之类的东西。让我感到困扰的是,它仅仅是“让这个成为那个”。让rec在微积分中没有意义。
Let使用更直接的块级有限作用域,而var通常是函数作用域或全局作用域。
之所以选择let,似乎是因为在许多其他语言中都可以找到它来定义变量,例如BASIC和许多其他语言。
推荐文章
- 用JavaScript创建一个基于字符串的十六进制颜色
- JavaScript数据网格数百万行
- 我可以在JavaScript中获得当前运行函数的名称吗?
- 如何防止输入键提交网页表单?
- 在html文本框中设置键盘插入符号的位置
- 使用jQuery选择多个类
- Cypress:只运行一个测试
- 如何同步确定JavaScript Promise的状态?
- 在Link react-router中传递道具
- 我如何承诺本地XHR?
- 如何在iframe上设置“x帧选项”?
- js比较数组
- AngularJS路由不带散列“#”
- Node.js创建文件夹或使用现有的
- 使用src动态添加脚本标签,可能包括document.write