call和apply第一個引數為null/undefined,函式this指向全域性物件

看風景就發表於2018-10-11

call和apply第一個引數為null/undefined,函式this指向全域性物件,在瀏覽器中是window,在node中是global

在嚴格模式中(ie 6/7/8/9 除外),傳入null/undefined,this不指向全域性物件,而是null/undefined本身

'use strict'

function func(){
  console.log(this);
}

func.call(null); // null
func.apply(undefined); // undefined

 

 


參考:http://www.cnblogs.com/snandy/archive/2012/03/01/2373243.html

相關文章