elena1234

Chain function ( JavaScript )

Dec 1st, 2021 (edited)
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function add(x) {
  2.  
  3.     function sum (a) {
  4.         x += a;
  5.         return sum;
  6.     }
  7.  
  8.     sum.toString = () => x;
  9.     return sum;
  10. }
  11.  
  12. console.log(
  13.    add(1)(5).toString()
  14. );
Add Comment
Please, Sign In to add comment