배열을 받아서 양수와 음수 두 개의 배열이 있는 객체를 반환하는 함수를 작성해야 합니다. 둘 다 배열에서 각각 양수 및 음수 항목을 모두 포함해야 합니다.
Array.prototype.reduce() 메서드를 사용하여 원하는 요소를 선택하고 두 배열의 객체에 mint를 넣을 것입니다.
예시
이에 대한 코드는 -
const arr = [97, -108, 13, -12, 133, -887, 32, -15, 33, -77]; const splitArray = (arr) => { return arr.reduce((acc, val) => { if(val < 0){ acc['negative'].push(val); }else{ acc['positive'].push(val); } return acc; }, { positive: [], negative: [] }) }; console.log(splitArray(arr));
출력
콘솔의 출력 -
{ positive: [97, 13, 133, 32, 33,], negative: [ -108, -12, -887, -15, -77 ] }