码迷,mamicode.com
首页 > 移动开发 > 详细

call和apply第一个参数为null/undefined,函数this指向全局对象

时间:2018-10-11 11:38:40      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:div   glob   UNC   www   com   fine   undefined   .com   fun   

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

call和apply第一个参数为null/undefined,函数this指向全局对象

标签:div   glob   UNC   www   com   fine   undefined   .com   fun   

原文地址:https://www.cnblogs.com/mengff/p/9771054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!