Guest User

Untitled

a guest
Nov 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. freeze = (hash) ->
  2. Object.freeze hash if Object.freeze?
  3.  
  4. obj = a: 3, b:7
  5. freeze obj
  6. obj.c = 4
  7. console.log obj.a #=> 3
  8. console.log obj.c #=> undefined
Add Comment
Please, Sign In to add comment