<script type="text/javascript">
        var word1 = 'abcdefg';
        var word2 = 'ABCDEFG';

        word1 = word1.toUpperCase();
        // 소문자를 대문자로
        word2 = word2.toLowerCase();
        // 대문자를 소문자로

        alert(word1);
        alert(word2);
    </script>

 

                                             


'개발개발 > 자바스크립트' 카테고리의 다른 글

기본내장객체 - Date  (0) 2012.08.27
기본내장객체 - Array - sort  (0) 2012.08.27
기본내장객체 - Number  (0) 2012.08.27
기본내장객체 - object  (0) 2012.08.27
상속  (0) 2012.08.27
Posted by 공돌공돌
,