// 문자형 -> 숫자형
const id = Number(match.params.id);

// 숫자형 -> 문자형
const id = String(match.params.id);