- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
做一个极端的总结,the difference between var
and let
他们的生活在一个范围内。
因此,如果我们要以 this answer 中的示例为例:
(function() {
for (var i = 0; i < 5; i++) {
setTimeout(function() {
console.log(`i: ${i}`);
}, i * 100);
}
// 5, 5, 5, 5, 5
for (let j = 0; j < 5; j++) {
setTimeout(function() {
console.log(`j: ${j}`);
}, 1000 + j * 100);
}
// 0, 1, 2, 3, 4
}());
i
(用 var
声明)存在于整个 function
j
(用 let
声明)只存在于 for
循环中。对我来说,这意味着 javascript,在每次迭代之后,除了声明和分配给变量之外,在 let
的情况下,它还需要执行一个额外的步骤:清理 j
但如果我正在阅读 the specs对了,还有很多:
var
,执行以下步骤:IterationStatement : for ( Expressionopt ; Expressionopt ; Expressionopt ) Statement
- If the first Expression is present, then
- Let exprRef be the result of evaluating the first Expression.
- Let exprValue be GetValue(exprRef).
- ReturnIfAbrupt(exprValue).
- Return ForBodyEvaluation(the second Expression, the third Expression, Statement, « », labelSet).
但在 let
的情况下,执行了多达 12 个步骤的 list ,包括创建新的声明性环境。
IterationStatement : for ( LexicalDeclaration Expressionopt ; Expressionopt ) Statement
- Let oldEnv be the running execution context’s LexicalEnvironment.
- Let loopEnv be NewDeclarativeEnvironment(oldEnv).
- Let isConst be the result of performing IsConstantDeclaration of > 1. LexicalDeclaration.
- Let boundNames be the BoundNames of LexicalDeclaration.
- For each element dn of boundNames do
- If isConst is true, then
- Perform loopEnv.CreateImmutableBinding(dn, true).
- Else,
- Perform loopEnv.CreateMutableBinding(dn, false).
- Assert: The above call to CreateMutableBinding will never return an abrupt completion.
- Set the running execution context’s LexicalEnvironment to loopEnv.
- Let forDcl be the result of evaluating LexicalDeclaration.
- If forDcl is an abrupt completion, then
- Set the running execution context’s LexicalEnvironment to oldEnv.
- Return Completion(forDcl).
- If isConst is false, let perIterationLets be boundNames otherwise let perIterationLets be « ».
- Let bodyResult be ForBodyEvaluation(the first Expression, the second Expression, Statement, perIterationLets, labelSet).
- Set the running execution context’s LexicalEnvironment to oldEnv.
- Return Completion(bodyResult).
那么为什么在运行以下测试(我从 the same question I previously referenced 中获取)时,var
的执行速度比 let
慢,反之亦然,因为我怀孕了吗?
(function() {
let varTime = performance.now()
for (var i = 0; i < 100000000; i++) {}
varTime = performance.now() - varTime;
console.log('var', varTime)
let letTime = performance.now()
for (let i = 0; i < 100000000; i++) {}
letTime = performance.now() - letTime;
console.log('let', letTime)
}).call({});
TEST 1
var: 147.500ms
let: 138.200ms
TEST 2
var: 141.600ms
let: 127.100ms
TEST 3
var: 147.600ms
let: 122.200ms
最佳答案
我同意@Derek 绅会功夫的观点,如果不深入实现,真的很难推理。
但是,对于 var
,您可能错过了一些步骤:
在 var
的情况下,实际上执行了更多 个步骤:
IterationStatement : for ( Expressionopt ; Expressionopt ; Expressionopt ) Statement
- If the first Expression is present, then
- Let exprRef be the result of evaluating the first Expression.
- Let exprValue be GetValue(exprRef).
- ReturnIfAbrupt(V).
- If Type(V) is not Reference, return V.
- Let base be GetBase(V).
- If IsUnresolvableReference(V), throw a ReferenceError exception.
- If IsPropertyReference(V), then
- If HasPrimitiveBase(V) is true, then
- Assert: In this case, base will never be null or undefined.
- Let base be ToObject(base).
- Return base.[[Get]](GetReferencedName(V), GetThisValue(V)).
- Else base must be an Environment Record,
- Return base.GetBindingValue(GetReferencedName(V), IsStrictReference(V)) (see 8.1.1).
- ReturnIfAbrupt(exprValue).
- Return ForBodyEvaluation(the second Expression, the third Expression, Statement, « », labelSet).
稍微 额外的处理可能来自 GetValue .
关于javascript - 为什么 let 不比 var 慢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51531675/
//Version A: var let = true; console.log(let);//true //Version B: let let = 0; //syntax Error: let i
//Version A: var let = true; console.log(let);//true //Version B: let let = 0; //syntax Error: let i
我在看a talk on JSON hijacking不到 2 分钟,已经有我不熟悉的 JavaScript。 let:let{let:[x=1]}=[alert(1)] 它似乎在 Edge 上工作并
(let ((x 2) (y 3) (let ((x 7) (z (+ x y))) (* z x))) 使用上面的代码,为什么答案是 35,而不是 70?在第二个 let
我正在编写一个以间隔作为参数并返回百分比错误的函数,但我坚持使用 let 或 let*。这是代码: 嵌套的 let 版本: (define (percent interval) (let (sta
我一直在阅读有关 Swift 中的Optional 的内容,并且看到过一些示例,其中 if let 用于检查Optional 是否包含值,如果包含值,则使用展开的值执行某些操作. 但是,我发现在 Sw
我正在尝试实现 local search algorithm进行优化。我是 Lisp 的新手,所以这是我想出的代码(注意 FORMATs): (defun local-search (solution
我一直在阅读有关 Swift 中的 Optionals 的文章,并且我看到了一些示例,其中 if let 用于检查 Optional 是否包含一个值,如果它包含 - 对未包装的值执行一些操作. 但是,
let () = Random.self_init();; let _ = Random.self_init ();; │- : unit = () 似乎“让()”什么也没返回? 真挚地! 最佳答案
有没有办法避免接下来的构造?一种在不向代码添加意图的情况下检查 null 的方法?我的意思是像 if (variableOne == null) return 但采用酷炫的 koltin 风格? va
什么时候使用 if-let 而不是 let 会使代码看起来更好以及对性能有影响吗? 最佳答案 我猜if-let当您想在代码的“then”部分引用 if 条件的值时,应该使用: 即而不是 (let [r
我有这些功能: (def i (atom {})) ;incremented/calculated file stats (defn updatei [n fic fos] (swap! i co
这个问题已经有答案了: Confused by the difference between let and let* in Scheme (2 个回答) 已关闭10 年前。 let、let* 和 l
因此,在 objective-c 、C/C++、.NET 以及我使用过的几乎所有其他语言中,您可以声明可以包含以前常量的常量,例如 #define PI 3.14159 #define HALFPI
在 Common Lisp 中,let 使用列表进行绑定(bind),即: (let ((var1 1) (var2 2)) ...) 虽然 Clojure 使用向量代替: (let
看下面两个使用相同代码的场景: 使用 IF LET: public func peripheral(_ peripheral: CBPeripheral, didDiscoverServices er
这个问题在这里已经有了答案: Differences between "static var" and "var" in Swift (3 个答案) 关闭 5 年前。 class Foo {
我脑海中的例子是:什么更好? 示例 1: (define (foo x) ... (values a b c)) (let-values (((a b c) (foo 42))) .
考虑以下宏: (defmacro somemacro [] (list 'let ['somevar "Value"] 'somevar)) 展开它会产生以下结果: (macroexpand
可以来给我解释一下为什么必须使用 let !而不是在这种情况下让?只有当我包含 ! 时,测试才会通过。我以为我明白 let 会在该块中的每个“it”语句之前自动执行,但显然情况并非如此。 descri
我是一名优秀的程序员,十分优秀!