Advertisement
Guest User

Untitled

a guest
Feb 28th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //v1
  2. function closure(value) {
  3.   const getLength = () => value.length;
  4.   return getLength;
  5. }
  6.  
  7. // v2
  8. function closure(value) {
  9.   const length = value.length;
  10.   const getLength = () => length;
  11.   return getLength;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement