nested-functions.spec.js 143 B

123456789101112
  1. const c = () => {};
  2. function a() {
  3. return function b() {
  4. return () => {
  5. return function() {
  6. return c;
  7. }
  8. }
  9. }
  10. }