admin管理员组文章数量:1344137
So I've been reading through Javascript - The Good Parts and one thing that Crockford points out is the use weakness of global variables in Javascript, in such a way that if your product is expanded in some manner, and it relies on a 'global' variable it could be inadvertently set.
That's all good and fine and I understand the pros/cons of protecting variables, in other manners such as closures as well. However, I was doing some thinking, and wrapping code in a function like so:
(function () {
var x = 'meh';
})();
(function () {
alert(typeof x); // undefined
})();
gives it variable scope, which thereby prevents cross contamination of variables. I'm not sure if there's a blatant downside to this approach though and wondered if the munity had any input, or if I'm just overthinking things and ignoring the main point.
So I've been reading through Javascript - The Good Parts and one thing that Crockford points out is the use weakness of global variables in Javascript, in such a way that if your product is expanded in some manner, and it relies on a 'global' variable it could be inadvertently set.
That's all good and fine and I understand the pros/cons of protecting variables, in other manners such as closures as well. However, I was doing some thinking, and wrapping code in a function like so:
(function () {
var x = 'meh';
})();
(function () {
alert(typeof x); // undefined
})();
gives it variable scope, which thereby prevents cross contamination of variables. I'm not sure if there's a blatant downside to this approach though and wondered if the munity had any input, or if I'm just overthinking things and ignoring the main point.
Share Improve this question edited Oct 28, 2010 at 17:47 Marcel Korpel 21.8k6 gold badges62 silver badges80 bronze badges asked Oct 28, 2010 at 17:21 A Wizard Did ItA Wizard Did It 3,6844 gold badges31 silver badges32 bronze badges4 Answers
Reset to default 7That's a perfectly legal way of doing things -- the variables inside of your function (as long as they are prefaced by var
) are local to the function. It's called the module pattern, and it's very well accepted.
To create applications with javascript, you must attempt to keep variables in a local scope, and anything inside a namespace. It's a good pratice and prevent a serie of harm codes and unespected behaviors.
read this
it's a article talking about the vantages of doing that.
Making it a global function is not the answer. Why wouldn't you do this? This keeps x out of the global namespace.
(function () {
var x = 'meh';
alert(typeof x); //string
})();
(function (global) {
global.x = 'meh';
})(window);
(function () {
alert(typeof x); // string
})();
本文标签: JavaScript global variables amp selfinvoking anonymous functionsStack Overflow
版权声明:本文标题:JavaScript global variables & self-invoking anonymous functions - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743745148a2531618.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论