programming/javascript

[typescript] ?: 구문

worldint 2023. 4. 20. 12:43

인터페이스나 타입 만들떄

 

interface company {

name: string;

chirman?: string;

}

 

이렇게 쓰면 ?: chirman 넣어도되고 안넣어도된다