본문으로 바로가기

// 숫자를 문자형으로 바꾸기

var tt = 2

alert(typeof tt);    // Result : number

tt = String(tt);

alert(typeof tt);    // Result : string


// 문자형을 숫자로 바꾸기

tt = "2"

alert(typeof tt);    // Result : string

tt = Number(tt);

alert(typeof tt);    // Result : number