Длительность прогулки

var temperature = 20;
var itsRaining = false;

var minutes;

if (itsRaining === true || temperature < 0 || temperature > 35) {
minutes = 0 ;
} else {
minutes = 20 - Math.abs(20 - temperature);
}