最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Strict mode and reserved word - Stack Overflow

programmeradmin1浏览0评论

Why is this code fine:

var test = {
    fn1: function(_origin, _ponentType) {
        if(arguments.length > 1) throw "xx";
        // this strict is ok
        "use strict";

        var interface               = new Object(this);
    }
}

While this isn't

var test = {
    fn1: function(_origin, _ponentType) {
        // This strict throws SyntaxError
        "use strict";

        if(arguments.length > 1) throw "xx";
        var interface               = new Object(this);
    }
}

I know interface is reserved word in strict mode, but shouldn't both examples throw an error?

Why is this code fine:

var test = {
    fn1: function(_origin, _ponentType) {
        if(arguments.length > 1) throw "xx";
        // this strict is ok
        "use strict";

        var interface               = new Object(this);
    }
}

While this isn't

var test = {
    fn1: function(_origin, _ponentType) {
        // This strict throws SyntaxError
        "use strict";

        if(arguments.length > 1) throw "xx";
        var interface               = new Object(this);
    }
}

I know interface is reserved word in strict mode, but shouldn't both examples throw an error?

Share Improve this question asked Nov 9, 2015 at 7:49 BuksyBuksy 12.2k9 gold badges64 silver badges70 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 10

"use strict"; needs to be the first statement in a function (or in a script, if script-wide) to trigger strict mode; anywhere else, you may as well be writing "merry christmas";.

The first example doesn't actually enable strict mode. See https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Strict_mode#Invoking_strict_mode:

Strict mode applies to entire scripts or to individual functions. It doesn't apply to block statements enclosed in {} braces; attempting to apply it to such contexts does nothing.

发布评论

评论列表(0)

  1. 暂无评论