こんにちは、私はここに渡す関数パラメータにオブジェクトの非構造の使用例を経たObject Destructuring DemoES6非構造オブジェクトの割り当て機能パラメータのデフォルト値
function drawES6Chart({size = 'big', cords = { x: 0, y: 0 }, radius = 25} = **{}**) {
console.log(size, cords, radius);
// do some chart drawing
}
// In Firefox, default values for destructuring assignments are not yet
implemented (as described below).
// The workaround is to write the parameters in the following way:
// ({size: size = 'big', cords: cords = { x: 0, y: 0 }, radius: radius =
25} = **{}**)
drawES6Chart({
cords: { x: 18, y: 30 },
radius: 30
});
は誰が最後に空のオブジェクトの割り当てを使用する理由は何である私に知らせることができ 私は太字(二重星に埋め込まれている)で上記の関数のパラメータを?