this Keyword in Different Contexts

What will be logged in strict mode?
'use strict';
function showThis() {
  console.log(this);
}

showThis();
Next Question (3/20)