나의 풀이
function solution(s) {
var answer = '';
let arr = [...s];
if(arr.length % 2 === 0) {
answer = arr[Math.floor(arr.length / 2) - 1] + arr[Math.floor(arr.length / 2)];
} else {
answer = arr[Math.floor(arr.length / 2)];
}
return answer;
}
남의 풀이
function solution(s) {
return s.substr(Math.ceil(s.length / 2) - 1, s.length % 2 === 0 ? 2 : 1);
}