function strToInt(str){ return +str; } // 테스트코드 console.log(strToInt("-1234")) // -1234 console.log(strToInt("+1234")) // 1234
int to string => ""+int string to int => +string
""+int
+string