https://github.com/ehfdl/programmers
.slice 로 뒷 4자리 번호를 저장하고
phone_number.length - 4 만큼 '*' 을 채운 문자열과 더하였다.
정규식을 이용한 풀이도 보았는데
function hide_numbers(s) {
return s.replace(/\d(?=\d{4})/g, "*");
}
이해조차 되지 않기 때문에 이런 것도 있구나! 하고 일단은 넘어가야 할듯 싶다.
Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.
이 error 로 시간을..
reducer 가 combine 되지 않았다고 하여
index.js , configStore.js 를 자세히 보았지만 틀린게 없었다..
그런데 reducer 를 export 하는 곳에서
.reducer 을 쓰지 않았다..
reducer 를 export 해주어야 Store 에 state 가 쌓인다..