As Douglas Crockford says we can have private properties using closures in JavaScript and they are very handy to handle secure data.
Now I understand the concept of Encapsulation, as it helps us to manage and structure the code . Even private variables are useful for performance, eg: you can cache DOM elements, properties and global variables for iterative access.
So the question is: How exactly closures or private variables help us in handling the sensitive data?