this Keyword in Different Contexts

How does 'this' behave with new.target?
function Fn() {
  console.log(new.target);
  console.log(this instanceof Fn);
}
Next Question (17/20)