9 lines
100 B
JavaScript
9 lines
100 B
JavaScript
class Controller {
|
|
constructor() {
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
console.log("here");
|
|
}
|
|
} |