250410-this的指向问题

执行以下程序,输出结果为()

function a(){
  console.log(this);
} 
a.call(null);
A. document
B. nul1
C. window
D. a
E. undefined