[프로그래머스] 가운데 글자 가져오기

ElenaPark·2021년 2월 26일
0

알고리즘

목록 보기
1/37
post-thumbnail

가운데 글자 가져오기

풀이

function solution(string) {
  if (string.length % 2 === 0) {
    const half = string.length / 2;
    return string[half - 1] + string[half];
  } else {
    const half = string.length / 2;
    return string[Math.floor(half)];
  }
}

console.log(solution("abcde"));
console.log(solution("qwer"));
profile
Front-end 개발자입니다.

0개의 댓글