Notice
Recent Posts
Recent Comments
Link
목록타입변환 (1)
kimmgamjja
[JavaScript] 문자열 변환, 숫자 변환 (타입변환)
문자열로 변환1. String()var tt = 2alert(typeof tt); // Result : numbertt = String(tt);alert(typeof tt); // Result : string 2. 숫자에 문자열 더하기var tt = 2tt += "";alert(typeof tt); // Result : string 3. toString()var tt = 2; // Numbertt = tt.toString();console.log(typeof tt); // Stringvar arr = ['today', 'yesterday', 'hello', '1', 'bye'].toString();console.log(arr); // "today,yesterday,hello,1,bye"숫..
공부/JavaScript
2025. 1. 23. 11:26