Hey, methods in POJOs don't autocomplete like here: ``` javascript var foo = { bar() { } baz() { this.bar<ctrl+space> } } ``` although it works just fine for ES6 classes: ``` javascript class Foo { bar() { } baz() { this.bar<ctrl+space> } } ``` BR Dominik
Hey,
methods in POJOs don't autocomplete like here:
although it works just fine for ES6 classes:
BR
Dominik