가운데 글자 가져오기
문제
문제 설명
단어 s의 가운데 글자를 반환하는 함수, solution을 만들어 보세요. 단어의 길이가 짝수라면 가운데 두글자를 반환하면 됩니다.
재한사항
s는 길이가 1 이상, 100이하인 스트링입니다.
입출력 예
s return
"abcde" "c"
"qwer" "we"
풀이
function solution(s) {
// 글자수가 짝수일 경우 인덱스 중간 두 글자를 리턴한다
// 글자수가 홀수일 경우 인덱스 중간 한 글자만 리턴한다
let letter = s.length;
return letter % 2 === 0 ? s.substring(letter / 2 - 1, letter / 2 + 1) : s.charAt(Math.floor(letter / 2));
}
❗️ substring과 charAt의 차이점을 제대로 인지한 문제였다
✏️ string.substring(): 문자열의 부분 문자열을 반환
const str = 'Mozilla';
console.log(str.substring(1, 3));
// expected output: "oz"
console.log(str.substring(2));
// expected output: "zilla"
✏️ string.charAt(): 문자열에서 특정 인덱스에 위치하는 단일문자(한글자)를 반환
const sentence = 'The quick brown fox jumps over the lazy dog.';
const index = 4;
console.log(`The character at index ${index} is ${sentence.charAt(index)}`);
// expected output: "The character at index 4 is q"
Author And Source
이 문제에 관하여(가운데 글자 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jamiep9rk/가운데-글자-가져오기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)