แทนที่จะทำให้การโทรกลับเป็นทางเลือกเพียงกำหนดค่าเริ่มต้นและเรียกมันว่าไม่ว่าจะเกิดอะไรขึ้น
const identity = x =>
x
const save (..., callback = identity) {
return callback (...)
}
เมื่อใช้
save (...)
save (..., console.log)
สไตล์ดังกล่าวเรียกว่าสไตล์การส่งต่อ นี่คือตัวอย่างจริงcombinations
ที่สร้างชุดค่าผสมที่เป็นไปได้ทั้งหมดของอินพุต Array
const identity = x =>
x
const None =
Symbol ()
const combinations = ([ x = None, ...rest ], callback = identity) =>
x === None
? callback ([[]])
: combinations
( rest
, combs =>
callback (combs .concat (combs .map (c => [ x, ...c ])))
)
console.log (combinations (['A', 'B', 'C']))
เนื่องจากcombinations
ถูกกำหนดไว้ในรูปแบบการส่งต่อการเรียกใช้ข้างต้นจึงเหมือนกันอย่างมีประสิทธิภาพ
combinations (['A', 'B', 'C'], console.log)
นอกจากนี้เรายังสามารถส่งต่อแบบกำหนดเองที่ทำอย่างอื่นกับผลลัพธ์
console.log (combinations (['A', 'B', 'C'], combs => combs.length))
รูปแบบการส่งต่อสามารถใช้ได้กับผลลัพธ์ที่สวยงามอย่างน่าประหลาดใจ
const first = (x, y) =>
x
const fibonacci = (n, callback = first) =>
n === 0
? callback (0, 1)
: fibonacci
( n - 1
, (a, b) => callback (b, a + b)
)
console.log (fibonacci (10))
typeof callback !== undefined
ดังนั้น'