1. 문자열을 모두 대문자로 변경하는 방법 let word = "hello world"; word = word.toUpperCase(); // "HELLO WORLD" 2. 문자열을 모두 소문자로 변경하는 방법 let word = "HELLO WORLD"; word = word.toLowerCase(); // "hello world" 3. 문자열 첫글자만 대문자로 변경하는 방법 let word = "hello"; const formatUpperStartLetter = (startLetter: string) => { return startLetter.replace(/^[a-z]/, (char) => char.toUpperCase()); }; word = formatUpperStartLetter(word);..
"Hello word" 의 마지막 글자인 "d" 를 가져오는 방법 const helloWorld = "Hello world"; const lastLetter = helloWorld.charAt(helloWorld.length - 1); // "d" "Hello world" 의 마지막 글자가 "d" 인지 확인하는 방법 const helloWorld = "Hello world"; const isMatched = helloWorld.endsWith("d"); // true
"ABC" 를 "ABCABCABC" 또는 "ABCABCABCABCABC" 로 만드는 방법 const ABC = "ABC" const example1 = ABC.repeat(3); // "ABCABCABC" const example2 = ABC.repeat(5); // "ABCABCABCABCABC"