fork download
  1. function addFunction(num){
  2. var fun =function(num2){ return num+num2}
  3. num++;
  4. return fun;
  5. }
  6. console.log(addFunction(5)(5));
  7.  
Runtime error #stdin #stdout 0.02s 4980KB
stdin
1
2
10
42
11
stdout
Standard output is empty