reduse use of .reduce
This commit is contained in:
parent
3743c45de6
commit
b6e57e8a19
|
@ -57,7 +57,7 @@ class TravelForecast extends WeatherDisplay {
|
|||
this.data = forecasts;
|
||||
|
||||
// test for some data available in at least one forecast
|
||||
const hasData = this.data.reduce((acc, forecast) => acc || forecast.high, false);
|
||||
const hasData = this.data.some((forecast) => forecast.high);
|
||||
if (!hasData) {
|
||||
this.setStatus(STATUS.noData);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue