[CodeKata] 가운데 글자 가져오기

ryan·2021년 4월 19일
0

CodeKata JS

목록 보기
18/26
post-thumbnail

링크

참고

나의 풀이

const solution = (s) => {
  const midIndex =
    s.length % 2 === 1
      ? Math.floor(s.length / 2)
      : [s.length / 2 - 1, s.length / 2];
  
  if (s.length % 2 === 1) {
    return s.charAt(midIndex);
  } else {
    return s.charAt(midIndex[0]) + s.charAt(midIndex[1]);
  }
};
profile
👨🏻‍💻☕️ 🎹🎵 🐰🎶 🛫📷

0개의 댓글