(Expanded) Filtering out empty rows from a 2D Array (version: 2)
Comparing performance of:Double negation (!!row.length) with destructuring vs Double negation (!!row.length) without destructuring vs Comparison (row.length > 0) with destructuring vs Comparison (row.length > 0) without destructuring vs Double negation (!!row) vs Boolean constructor vs Array.length property vs Array.some() method vs Object.keys() vs for...of loop vs Array.isArray() with length vs typeof with length vs First element check vs Length property cast with destructuring vs Length property cast without destructuring