火哥算法六大商業(yè)實(shí)戰(zhàn)項(xiàng)目課
let obj = {
? ?init() {
? ? ? ?console.log( this )
? ? ? ?let prop = {
? ? ? ? ? ?init: () => {
? ? ? ? ? ? ? ?console.log( this )
? ? ? ? ? ?},
? ? ? ? ? ?bind() {
? ? ? ? ? ? ? ?console.log( this )
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?prop.init()
? ? ? ?prop.bind()
? ?}}obj.init()
上述中的 this
會(huì)打印出什么呢?
let obj = {
? ?init() {
? ? ? ?console.log( this ) ?// 2. ?this === obj
? ? ? ?let prop = {
? ? ? ? ? ?init: () => {
? ? ? ? ? ? ? ?console.log( this ) ?// 4. this === prop 同級(jí) this ==> this === obj
? ? ? ? ? ?},
? ? ? ? ? ?bind() {
? ? ? ? ? ? ? ?console.log( this ) ?// 6. this === prop
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?prop.init() ?// 3. init() 是箭頭函數(shù) ==> prop.init.call( prop 同級(jí) this )
? ? ? ?prop.bind() ?// 5. bind 不是箭頭函數(shù) ==> prop.bind.call( prop )
? ?}}obj.init() ?// 1. ?=== obj.init.call( obj )