// strictPropertyInitialization : false
class Person {
name: string;
// !를 넣으면 number가 할당되지 않아도 에러를 일으키지 않겠다.
age!: number;
}
const p1: Person = new Person();
console.log(p1); // Person1 {}
person.age = 20;
console.log(person.name); // undefined