- parameter type
function addTwo(num: number) {
return num + 2;
}
function getUpper(val: string){
return val.toUpperCase()
}
typescript error
- return type
function addTwo(num: number): number {
// return num + 2;
return "hello"
}
문자열로 변환 해 return. return type 통일하기
const heros = ["thor", "spiderman", "ironman"]
// const heros = [1, 2, 3]
heros.map((hero): string => {
return `hero is ${hero}`
})
코드 :
참고 :
'Javascript&Typescript' 카테고리의 다른 글
[Javascript] variable 과 !!variable - Double Exclamation Mark (1) | 2024.03.06 |
---|---|
[Javascript] throw Error 와 console.error 차이 (0) | 2024.02.28 |
[Javascript] typeerror (intermediate value) is not iterable (0) | 2024.02.28 |
[Typescript] variable type (0) | 2024.02.07 |
[Typescript] typescript 설치, 시작 (0) | 2024.02.05 |
댓글