10_and
문제 배열을 입력받아 모든 요소의 논리곱(and)을 리턴해야 합니다. 입력 let output = and([true, true, true]); console.log(output); // --> true output = and([true, true, false]); console.log(output); // --> false function and(arr) { if (arr.length === 0) { return true; } // const [head, ...tail] = arr; const head = arr[0]; const tail = arr.slice(1); // if (head === false) { // return false; // } return head && and(tail); }