Discussion Forum : Array And Function
Question - Which of the following is the correct code for invoking a function without this keyword at all, and also too determine whether the strict mode is in effect?
Options:
A .  var strict = (function { return this; });
B .  mode strict = (function() { return !this; }());
C .  var strict = (function() { return !this; }());
D .  mode strict = (function { });
Answer: Option C

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *