IP屬地:上海
//1.可以改變我們當前函數(shù)的this指向(當?shù)谝粋€參數(shù)為null入宦、undefined時帅腌,默認指向window;) //2.還會讓當前函數(shù)執(zhí)行 ...
1.箭頭函數(shù) 普通函數(shù)取決于誰調(diào)用它,它的this就指向誰,并不是固定的(普通函數(shù)this指向取決于調(diào)用) //簡寫注意 1.如果有且僅有一個參...
1.變量提升 console.log(a);//undefined var a=123; 因為變量a的聲明被提到了作用域頂端。代碼編譯后應該是下...
父組件 => 子組件: 1.屬性props // child props: { msg: String } // parent <HelloWo...