filtering 2d arrays using javascript

前端 未结 5 1925
眼角桃花
眼角桃花 2021-01-28 06:23

I have a 2D array where I need to filter the rows having date field (3d column)

var data = [
[\'1\',\'a\',\'12-12-2019\',\'A\'],
[\'2\',\'b\',\'\',\'A\'],
[\'3\'         


        
5条回答
  •  失恋的感觉
    2021-01-28 07:03

    When it comes to speed for loop is fastest as your value to match is always at fixed index so you can just directly check and value and push your data

    var data = [['1','a','12-12-2019','A'],['2','b','','A'],['3','c','12-1-2019','A'],['4','d','','A'],];
    
    let op = []
    
    for(let i=0; i

提交回复
热议问题