Here is my code
class ModuleController {
constructor() {
this.testVar = 'XYZ';
}
create(req, res, next) {
debug(this.testVar);
}
}
export default ModuleController;
I get Cannot read property 'create' of undefined
Why?
This is node 7 with Babel and Express -- all latest version.