Two ways to filter arrays (with vanilla JavaScript) - Go Make Things: https://gomakethings.com/two-ways-to-filter-arrays-with-vanilla-javascript/
@alcinnz General ack but we should be aware that a for … of loop is much faster than a .filter() Mostly things that do not return are faster.I guess it depends how much and where we filter.