string.toUpperCase()
let str="abcd EFGH"; str.toUpperCase(); // 'ABCD EFGH'
모든 소문자를 대문자로 변환시켜준다.
string.toLowerCase()
let str="abcd EFGH"; str.toLowerCase(); // 'abcd efgh'
모둔 대문자를 소문자로 변환시켜준다.