728x90
✨ String의 알파벳을 대문자(toUpperCase()) 또는 소문자(toLowerCase())로 바꿔주는 helper method
(e.g., str.toLowerCase() or str.toUpperCase()) 왼쪽처럼 String 변수에 helper method를 붙여 사용한다.
💻Example Code
const strOne = 'abc';
const strTwo = 'ABC';
console.log( strOne.toUpperCase() );
console.log( strTwo.toLowerCase() );
😋 Anagrams(철자 순서를 바꾼 말)와 Vowels(모음 찾기) Algorithm 에서 유용하게 사용했다. 다양한 곳에서 활용이 가능하다.
활용된 내용은 위의 알고리즘 문제를 참고하시면 좋습니다.
👉 자세한 내용은 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase
'JavaScript > Built-in Method etc.' 카테고리의 다른 글
Object.keys() & Object.values() (0) | 2019.12.29 |
---|---|
Array.prototype.sort() (0) | 2019.12.28 |
Array.prototype.includes() (0) | 2019.12.26 |
Array.prototype.every() (0) | 2019.12.24 |
Array.prototype.reduce() (0) | 2019.12.24 |