箭頭函數()=>{}與function的區別

1.箭頭函數與function定義函數的寫法:git //function function fn(a, b){ return a + b; } //arrow function var foo = (a, b)=>{ return a + b }; 2.this的指向:使用function定義的函數,this的指向隨着調用環境的變化而變化,而箭頭函數中的this指向是固定不變的,一直指向
相關文章
相關標籤/搜索