深度學習 天池新聞文本分類比賽指導班(NLP方向)
2022-10-29 00:02 作者:janet19961217 | 我要投稿
示例一
'use strict'function fn( a, b ){
? ?console.log( this )}fn( 1, 2 )
上述中的 this
會打印出什么呢?
fn( 1, 2 ) === fn.call( undefined, 1, 2 ) === fn.apply( undefined, [1, 2] )
答案
嚴格模式 ==>
this === undefined
非嚴格模式 ==>
this === undefined == 瀏覽器轉化 ==> window
標簽: