Aniket Bhattacharjee

11
reputation
3

// Do you want to know about me? Check here:

1  class Person {
2      constructor() {
3        this.name = "Aniket Bhattacharjee";
4        this.traits = ["DEV","JAVA"];
5        this.expertise = ["ANDROID","GITHUB"];
6        this.projects = ["POKÉCHU","LUCA","PYHUB"];
7        this.age = new Date().getFullYear() - 2000;
8      }
9  }