TypeScript-箭頭表達式理解

箭頭表達式優勢:函數 1.用來聲明匿名函數,書寫簡潔方便。this 2.使得匿名函數中的this有更好的利用。console 箭頭表達式書寫時,寫法爲()=>{}匿名函數 當沒有參數時:var sum = ()=>{co console.log('xxx');參數 } 當有一個參數時:寫法爲args=>{} var sum =  args =>{ console.log(args); }   當有
相關文章
相關標籤/搜索