在 ES6 函式內的預設參數
在許多程式設計語言函數的參數預設值是強制需要的,而開發者也會明確定義一個可選的參數。在 JavaScript 中,每個參數都是可選的,利用 es6 參數預設值的特性,我們可以強制執行這個行為,而不會弄亂函數的主體。
const _err = function( message ){
throw new Error( message );
}
const getSum = (a = _err('a is not defined'), b = _err('b is not defined')) => a + b
getSum( 10 ) // 拋出錯誤,b 沒有被定義
getSum( undefined, 10 ) // 拋出錯誤,a 沒有被定義
_err
是一個函式可以立即拋出錯誤。如果沒有傳送其中一個參數,函數預設值就會被使用,_err
將會被呼叫而且會拋出錯誤。你可以在 Mozilla’s Developer Network 看更多關於 預設參數值特性 的範例。
MEET THE NEW JSTIPS BOOK
You no longer need 10+ years of experience to get your dream job.
Use the 100 answers in this short book to boost your confidence and skills to ace the interviews at your favorite companies like Twitter, Google and Netflix.
GET THE BOOK NOW
MEET THE NEW JSTIPS BOOK
The book to ace the JavaScript Interview.
A short book with 100 answers designed to boost your knowledge and help you ace the technical interview within a few days.
GET THE BOOK NOW