Często używam tego wzorca w JavaScript. Oto przykład:
const comments = [
{ text: 'Hello', id: 1 },
{ text: 'World', id: 4 },
];
const byId = id => element => element.id === id;
const comment = comments.find(byId(1));
Czasami ten wzorzec może sprawić, że nasz kod będzie czytelny i modułowy. Jak nazywa się ten wzór?