[ts] 함수
2022-12-24 06:40

[ts] 함수

1. 선택적 매개변수
function hello(name?: string) {
return `hello, ${name}`;
}
console.log(hello())
여러 매개변수를 쓸 때 주의점
=> 선택적 매개변수는 필수...

댓글