admin管理员组文章数量:1344572
I was writing some random code in the chrome developer console. For my surprise, chrome let me use let
as a variable name which is pletely wrong as let
is a reserved keyword. I need to understand why is this happening.
Scenarios:
var const = 78 //throws an error as expected
var function = 46 //throws an error as expected
var let = 56 //didn't throw an error :O
let //prints 56, which is wrong because 'let' is a keyword
let ab = 90
ab //prints 90 as expected
This flaw exists in node
. But, when I try it in Babel REPL it is throwing an error.
I think this is something to do with Google v8
I was writing some random code in the chrome developer console. For my surprise, chrome let me use let
as a variable name which is pletely wrong as let
is a reserved keyword. I need to understand why is this happening.
Scenarios:
var const = 78 //throws an error as expected
var function = 46 //throws an error as expected
var let = 56 //didn't throw an error :O
let //prints 56, which is wrong because 'let' is a keyword
let ab = 90
ab //prints 90 as expected
This flaw exists in node
. But, when I try it in Babel REPL it is throwing an error.
I think this is something to do with Google v8
Share Improve this question asked Nov 14, 2016 at 9:16 Pranesh RaviPranesh Ravi 19.1k10 gold badges50 silver badges70 bronze badges 12- 2 Why not just avoid using possibly reserved words? There are lists of "do not use" words and the official "reserved words" – mplungjan Commented Nov 14, 2016 at 9:18
- 2 Not certain enough to post as an answer, but I'd assume that this is to prevent old code from breaking. What if a pre-ES2015 app was making use of a variable called 'let'? – Joe Clay Commented Nov 14, 2016 at 9:18
- I get it. If there is an official list of "reserved words", why is v8 not following it. I expect it to throw an error. – Pranesh Ravi Commented Nov 14, 2016 at 9:19
-
@PraneshRavi You can do
var undefined = 10
as well – Rajesh Commented Nov 14, 2016 at 9:20 - 1 @JoeClay I use eslint all the time :P. I was just curious to know the reasons behind this. Thanks for the answer. – Pranesh Ravi Commented Nov 14, 2016 at 9:29
3 Answers
Reset to default 7A nice write-up of the reasoning behind this can be found in this article by Mohsen Azimi. Here's a quick summary of it.
The following keywords are defined in the JavaScript spec as FutureReservedWord
:
implements interface let package private
protected public static yield
In normal mode, these can be used as variable names without errors; however, in strict mode they are treated as reserved words and will throw the following error:
SyntaxError: Cannot use the reserved word 'let' as a variable name in strict mode.
This is so that pre-ES2015 code doesn't break - if someone had named lots of their variables let
in a legacy app, they probably wouldn't be happy if the JS spec suddenly broke everything.
The usage of reserved ES6 keywords is forbidden only in strict mode for patibility reasons.
Babel (via the strict mode plugin) use strict mode by default. In the browser or in Node you can implicitly set strict mode by adding "use strict";
in the beginning of the file or the function.
Running the following code snippet will throw an error in Chrome as you expect it:
"use strict";
var let = 43;
// Throws: Uncaught SyntaxError: Unexpected strict mode reserved word
This is the joy of a growing language.
The short version is that const
was listed in the ECMAScript 1st Edition as a "future reserved word" which meant that although it didn't have any meaning (then), it couldn't be used for identifiers. (And of course, function
has always been a reserved word.) But let
was neither a reserved word nor a future reserved word, so it could be used for identifiers (and was). It wasn't until the 5th edition that let
was identified as a future reserved word, and then only in the new strict mode ES5 added. (Your example doesn't work in strict mode.) Since let
wasn't reserved, it was potentially used in code in widespread use, and couldn't be retroactively made a purely reserved word in ES2015. So instead, it's still a valid identifier (in loose mode). The parser has to figure out whether it's a declaration or identifier by context. (This has the fun consequence that in loose mode, forgetting to type an identifier after let
isn't a syntax error, let = 42;
works just fine — even if let
isn't declared anywhere [thanks to what I call The Horror of Implicit Globals]. These are good reasons to always use strict mode [because let
can't be an identifier in strict mode, and strict mode doesn't have implicit globals].)
JavaScript also has contextual reserved words. async
is a valid identifier (even in strict mode, and even inside an async
function!), it only has special meaning in places where previously it would have been a syntax error for an identifier to be there:
// Since `blah function` here is a syntax error:
blah function foo() {
}
// ...no valid code would have an identifier in that position, so it was possible
// to add an `async` modifier:
async function foo() {
}
await
is a valid identifier (even in strict mode), unless it's within an async
function; then it's a reserved word. That's possible because async
functions didn't exist before await
, so there was no possibility of an async
function existing that used await
as an identifier. Similarly, yield
is only a reserved word inside generator functions.
本文标签: javascriptUsing 39let39 as a variable name is not throwing any errors in google v8Stack Overflow
版权声明:本文标题:javascript - Using 'let' as a variable name is not throwing any errors in google v8 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743796537a2540536.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论