javascript - NodeJS Strict Mode - Stack Overflow

Are there any advantages to using "use strict" in NodeJS? For example, a global object is not

Are there any advantages to using "use strict" in NodeJS? For example, a global object is not a good idea to use, as all your requests will mutate said object (assuming the object in question should be unique to each user, of course). In this case, using strict mode would have been a good idea, no?

I feel like strict mode is a good idea to pair with Node, but I haven't been able to find any pros or cons to it via google.

Disclaimer: I know what use strict does, this question is focusing on the server sided pros/cons!

Are there any advantages to using "use strict" in NodeJS? For example, a global object is not a good idea to use, as all your requests will mutate said object (assuming the object in question should be unique to each user, of course). In this case, using strict mode would have been a good idea, no?

I feel like strict mode is a good idea to pair with Node, but I haven't been able to find any pros or cons to it via google.

Disclaimer: I know what use strict does, this question is focusing on the server sided pros/cons!

Share edited May 20, 2014 at 16:29 Sterling Archer asked May 20, 2014 at 16:22 Sterling ArcherSterling Archer 22.4k19 gold badges85 silver badges121 bronze badges 0
Add a ment  | 

1 Answer 1

Reset to default 15

Well, clarity and speed.

Unlike what the popular answers and question in SO say - the real primary goal of strict mode and the "use strict" directive is to eliminate dynamic scoping in JavaScript which is why changing arguments via arguments and changing arguments itself is not allowed, why with is not allowed, and so on.

Clarity

Strict mode does not allow dynamic scoping, so you can always statically know what a variable refers to. with statements, changing variables via arguments and other types of non-static scoping make code less readable, in non strict mode:

// example from referenced thread
// global code
this.foo = 1;

(function () {
  eval('var foo = 2');

  with ({ foo: 3 }) {
    foo // => 3
    delete foo;
    foo // => 2
    delete foo;
    foo // => 1
    delete foo;
    foo // ReferenceError
  }
}());

This sort of headache is avoided in strict mode.

Speed

Strict mode is much faster than non strict mode. A lot of optimizations can only be made in strict mode since it can assume a lot more about what doesn't change and how to resolve references. V8 internally uses this extensively.

References:

  • Still not sure what dynamic/lexical scope is? Read this article by @EricLippert
  • This Excellent write up by @Domenic and the discussion it references.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743667103a4487156.html

相关推荐

  • javascript - NodeJS Strict Mode - Stack Overflow

    Are there any advantages to using "use strict" in NodeJS? For example, a global object is not

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信