javascript 형변환 (int -> string, string ->int )

int -> string
int i = 123;
string s = Integer.toString(i)
string ->int

string s = "123";
int i = Integer.parseInt(s);
Previous
Next Post »