영어로 대문자로 해주는걸 casing이라고 하나보다.
영어로 강의 듣다가 알았다.
toUpperCase(),trim()의 예시는 아래와 같다.
let msg = "i love you zzong"
undefined
let capitaliseMsg = msg.toUpperCase()
undefined
capitaliseMsg
'I LOVE YOU ZZONG
trim()은 문장 앞뒤의 공백을 없애주는 method다.
내 예제로 연습한 코드는 아래와 같다
let userInput = " greta garbo is the best actress ever "
undefined
userInput.trim()
'greta garbo is the best actress ever'
userInput.trim().toUpperCase()
'GRETA GARBO IS THE BEST ACTRESS EVER'
이렇게 trim() 과 toUpperCase() 동시에 써줄 수 있다!
아, 그리고 소문자로 바꾸는건 toLowerCase()이다.