string to number 요상한 문법 (js)

  • string type 변수앞에 + 기호를 넣으면 number type 으로 캐스팅된다…
  • 이런 문법은 wow…
example.ts
1
2
3
4
5
6
7
function squareValue(x: any) {
return Math.pow(x * 1, 2);
}

function squareValue(x: string | number) {
return Math.pow(+x, 2);
}
  • any 사용을 피하라는 예제를 코드를 보는데 우연히 알게되었다

참고

Author

chinsung

Posted on

2020-12-21

Updated on

2021-08-04

Licensed under

댓글