Answers for "filter 2d array javascript"

0

filter 2d array javascript

function filterByPosition(array, number, position) {
   return array.filter(innerArray => innerArray[position - 1] !== number);
}

const items = [
  [1, 1, 2, 4],
  [2, 1, 4, 6],
  [5, 6, 4, 1],
  [1, 6, 3, 1]
];

const newItems1 = filterByPosition(items, 1, 2);
console.log('Items1:', newItems1);

const newItems2 = filterByPosition(items, 4, 3);
console.log('Items2:', newItems2);
Posted by: Guest on July-15-2020

Code answers related to "filter 2d array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language