My name is Adnane Lamghari and i'm a Softawre engineer π» , and i'm passionate about developing web & mobile applications. I tend to make use of modern MEAN Stack and other web technologies to build cool applications.
1 export class Person {
2 private name: string;
3 private specialities : string[];
4 private age: number;
5
6 constructor() {
7 this.name = "Adnane Lamghari";
8 this.specialities = ["DEV", "Software engineering"];
9 this.age = new Date().getFullYear() - 1996;
10 }
11 }