Posts by Draconar • 385 points
3 posts
-
1
votes1
answer5354
views -
24
votes2
answers6702
viewsQ: Is the ZIP code a unique ID in Brazil?
I own the official CEP base in Brazil, e-DNE, sold by the post office. I need to create a new bank from it, and would like to know if I can use the ZIP code value as my DB’s unique identifier. As…
-
3
votes3
answers243
viewsA: "Unclosure" a closure
Yes, do not use closures. Use simple objects with NEW or literal objects with {}. The closure, by definition, will maintain the entire scope: the internal + the external function. Your second…