fork download
  1. function compose(f , g){
  2. return function (x){
  3. return f(g(x));
  4. }
  5. }
  6.  
  7.  
  8. compose(function (x) {return x * x} , function (x) {return x + x})(4);
Success #stdin #stdout 0.02s 4980KB
stdin
Standard input is empty
stdout
Standard output is empty