Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Functions may be declared only at top level in strict mode

Tags:

javascript

I have this error when using FireFox with strict mode. But am unsure what it means. I assumed it meant that the function had to be declared before it was called upon but the error still occurs.

SyntaxError: in strict mode code, functions may be declared only at top level or immediately within another function

This is my snippet of code where it is causing the error:

var process = new function(){

  var self = this;

  self.test = function(value,callback){
    var startTime = Date.now();

     function update(){     //<--- error is here
                value++;
                startTime        = Date.now();

                if(value < 100){ 
                    setTimeout(update, 0);
                }
                callback(value);
    }       
    update();
  }

};

So i'm wondering how would I write this snippet of code out correctly with strict ? What does it mean by top level ? Does that mean globally defined and not locally within a function ?

Also given I have use strict why does this problem not occur in Chrome?

like image 252
Sir Avatar asked Oct 27 '15 04:10

Sir


1 Answers

You must put local functions BEFORE other code within the parent function in strict mode:

var process = function () {
    var self = this;
    self.test = function (value, callback) {

        function update() {
            value++;
            startTime = Date.now();
            if (value < 100) {
                setTimeout(update, 0);
            }
            callback(value);
        }

        var startTime = Date.now();
        update();
    }
};

This is described in this articles:

New ES5 strict mode requirement: function statements not at top level of a program or function are prohibited

MDN Strict Mode

In my own testing though (and counter to the articles I've read), I find that current versions of both Chrome and Firefox only complain about a local function definition if it is inside a block (like inside an if or for statement or a similar block.

I guess I need to go find an actual spec to see what is says.

like image 199
jfriend00 Avatar answered Nov 14 '22 22:11

jfriend00