js python 자료형변환
function solution(s) {
return +s
// return parseInt(s);
// return Number(s);
}
def solution(s):
return int(s)
const str = "-1234";
parseInt(str);
// -1234
+str;
// -1234
Number(str);
// -1234
const num = 1234;
String(num);
// "1234"
num + "";
// "1234"