为什么 Modernizer 不使用 var 作为 ret 变量
我正在研究现代化库的源代码,我想知道为什么他们不在第二行代码中使用关键字 var
作为变量 ret
?他们使用在其上方声明变量 version
时会使用它,但对于 ret
则不然。任何人都可以解释为什么他们不使用关键字 var
吗?
I was studying the source for the modernizer library and I"m wondering why they don't use the keyword var
for the variable ret
in the second line of code? They use it when declaring the variable version
right above it, but not for ret
. Can anyone explain why they wouldn't use the keyword var
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
他们确实使用
var
关键字。他们只使用一次,然后让它应用于他们在程序开始时定义的所有变量(这是 JS 编程的常见模式)。…哎呀,虽然这是第二行代码,但它不是您正在谈论的行。不过原理是一样的。
They do use the
var
keyword. They just use it once and let it apply to all the variables they define at the start of the program (which is a common pattern for JS programming).… and whoops, while that is the second line of code, it isn't the line you were talking about. The principle is the same there though.
ret
是用injectElementWithStyles()
声明顶部的var
定义的:ret
is defined with avar
at the top of theinjectElementWithStyles()
declaration:我没有分析整个脚本,但一般来说,当您希望变量具有全局作用域时,您可以跳过“var”声明。
更多信息:http://www.w3schools.com/js/js_variables.asp
I haven't analyzed the entire script, but in general you skip the "var" declaration when you want the variable to have a global scope.
More info: http://www.w3schools.com/js/js_variables.asp