티스토리 뷰

Javascript

toUpperCase(), toLowerCase()

근혁 2022. 4. 17. 22:34

toUpperCase()

문자열 대문자 변경 : 반환(문자열)

{
    const str1 = "javascript";
    const currentStr1 = str1.toUpperCase();

    //결과값 : JAVASCRIPT
}

toLowerCase()

문자열 소문자 변경 : 반환(문자열)

{
    const str2 = "JAVASCRIPT";
    const currentStr2 = str2.toLowerCase();
    
    //결과값 : javascript
}

'Javascript' 카테고리의 다른 글

charAt()  (0) 2022.04.17
startsWidth(), endWidth()  (0) 2022.04.17
reduce(), reduceRight()  (0) 2022.04.17
length, concat()  (0) 2022.04.17
fiter(), map()  (0) 2022.04.17
댓글
© 2018 webstoryboy