1. toString() - ().toString(2) => 2์ง์๋ก ๋ณํ , default๋ก ()์ด๋ฉด 10์ง์๋ก ๋ณํ. const str1 = (123.1).toString(); const str2 = (123).toString(); const str3 = (3).toString(2); document.write(str1 + ', ' + typeof str1 + ' ');// 123.1, string document.write(str2 + ', ' + typeof str2 + ' ');// 123, string document.write(str3 + ', ' + typeof str3 + ' ');// 11, string 2. String() const str1 = String(123.1); const ..