DEV Community

Discussion on: Modules vs Classes - How to Manage Privacy in JS

Collapse
 
saradari profile image
saradari

It's not you :), I think it's just an error, should be:
"3 - elonTrashCan.items is accessible, so the elonTrashCan.isEmpty() call will returns FALSE"

Class properties are public by default. developer.mozilla.org/en-US/docs/W...
Closure doesn't expose 'items', but class does and this is the big difference explained in the article.

Collapse
 
caiangums profile image
Ilê Caian

As I mentioned in another reply, I'm not actually using Classes. What you said is correct for Class 😄