Вы можете настроить условие фильтра
if(c.indexOf(43801308) > -1
, если нет контрольного индекса
if(c[1] == 43801308)
, если контрольный индекс 1
let data = [
[12, 43801309, "21.10.2018 00:00:00", 0.00089, 0.00055, 0.0004],
[13, 43801308, "22.10.2018 00:00:00", 0.00089, 0.00055, 0.0004],
[34, 43801307, "23.10.2018 00:00:00", 0.00089, 0.00055, 0.0004],
[234, 43801308, "24.10.2018 00:00:00", 0.00089, 0.00055, 0.0004]
];
let result = data.filter(c=> { if(c.indexOf(43801308) > -1) return c;});
console.log(result);
let data = [
[12, 43801309, "21.10.2018 00:00:00", 0.00089, 0.00055, 0.0004],
[13, 43801308, "22.10.2018 00:00:00", 0.00089, 0.00055, 0.0004],
[34, 43801307, "23.10.2018 00:00:00", 0.00089, 0.00055, 0.0004],
[234, 43801308, "24.10.2018 00:00:00", 0.00089, 0.00055, 0.0004]
];
let result = data.filter(c=> { if(c.indexOf(43801308) > -1) return c;});
//if only need index 1
result = data.filter(c=> { if(c[1] == 43801308) return c;});
console.log(result);