var s = "A aaa bbbb CCC";


s.toUpperCase()

모두 대문자로 변경
A AAA BBBB CCC

s.toLowerCase()

모두 소문자로 변경
a aaa bbbb ccc
Posted by [czar]
,