IIFE (Immediately Invoked Function Expression)

What is the value of 'this' inside an IIFE in non-strict mode?
(function() {
  console.log(this);
})();
Next Question (13/25)