Say I have an array of objects like on the picture:
Each object contains property ShipperPickupDate with a string value made from date object by calling toLocaleTimeString('en-US') method.
What I need is to filter this array of objects by the date range. Say I want to get new array containing objects filtered by shipperPickupDate in range from 2/10/2020 to 3/18/2020. Is there any method or suggestions?
Sorry for not providing any code. I'm still in searching of a proper way to do this so any suggestions are highly appreciated! Thank you!

Array.prototype.filter()let newArr = this.loadsFiltered.forEach(el => { return ( el.shipperPickupDate >= this.date1 && el.shipperPickupDate <= this.date2 ); });Would that work?momentjsto deal with date, it helps a lot and it has a functionisBetweenthat you can use.toLocaleTimeStringgives you a date based on locale timezone, could be a good idea to get your dates "rawly" to get UTC time too.