Semi-currying patter with bind

PHOTO EMBED

Wed Apr 21 2021 20:31:04 GMT+0000 (Coordinated Universal Time)

Saved by @erfan #javascript

const sum = (a, b) => a + b
const sum5 = sum.bind(null, 5)

sum5(10) // 15
content_copyCOPY