Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js

Idiom #35 First-class function : compose

Implement a function compose (A -> C) with parameters f (A -> B) and g (B -> C), which returns the composition function g ∘ f

function compose(f,g){
    return function(x){
        return g(f(x));
    };
}
(defn compose [f g]
   (comp g f))

New implementation...
< >
programming-idioms.org