My understanding of class statics is that they are referenced with 'this.foo'. Correct me if I'm wrong! But I've also noticed that when passing options to a newly instantiated object I reference them via 'this.options.foo'. Are options not also class static properties? Should I reference privately used class statics with 'options' as well as those that come via instantiation?
Hope that makes sense.