码迷,mamicode.com
首页 > 其他好文 > 详细

this深度面试题2

时间:2019-10-08 14:41:51      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:作用   对象   ons   简单   作用域   his   name   style   val   

var name = "windows"
var object = {
  name:"object",
  show:function(){
  return function(){
  return this.name  
}  
}        
}

object.show()()   //windows

从此题发现this只有一级往上的作用域(除非特别指定)

window.val = "1"
var obj = {
    val:"2",    
    show: function(){
    this.val *= 2
    val *= 2
    console.log(this.val)
    console.log(val)
}}

obj.show()
var fun = obj.show
fun()

4
2
8
8

 箭头函数的this定义:箭头函数的this是在定义函数时绑定的,不是在执行过程中绑定的。简单的说,函数在定义时,this就继承了定义函数的对象。

this深度面试题2

标签:作用   对象   ons   简单   作用域   his   name   style   val   

原文地址:https://www.cnblogs.com/-constructor/p/11634797.html

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