Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 배열의 AND 곱

<시간/>

다음과 같은 부울 배열의 배열이 있습니다 -

const arr = [[true,false,false],[false,false,false],[false,false,true]];

AND(&&) 연산자를 사용하여 각 하위 배열의 해당 요소를 결합하여 이 배열 배열을 1차원 배열로 병합하는 함수를 작성해야 합니다.

이 함수에 대한 코드를 작성해 봅시다. 이를 달성하기 위해 Array.prototype.reduce() 함수를 사용할 것입니다.

예시

이에 대한 코드는 -

const arr = [[true,false,false],[false,false,false],[false,false,true]];
const andMerge = (arr = []) => {
   return arr.reduce((acc, val) => {
      val.forEach((bool, ind) => {
         acc[ind] = acc[ind] && bool || false;
      });
      return acc;
   }, []);
};
console.log(andMerge(arr));

출력

콘솔의 출력은 다음과 같습니다. -

[ false, false, false ]