I have the following example:
import express from 'express';
class myController{
constructor(){
this.router = express.Router();
this.router.get('/', this.getData);
}
getData(){
console.log(this); //error
}
}
What am i doing wrong?