function isDry(weather) {
if (typesUtil.isSunny(weather) ||
(!typesUtil.isSunny(weather) && typeof weather.hasSnow === 'boolean' && !weather.hasSnow)) {
return true;
}
return false;
}
vs function isDry(weather) {
return typesUtil.isSunny(weather) ||
(typeof weather.hasSnow == ‘boolean’ && !weather.hasSnow);
}
vs function isDry(weather)
var hasSnow = false;
if(typeof weather.hasSnow === 'boolean') {
hasSnow = weather.hasSnow;
}
return (typesUtil.isSunny(weather) || !hasSnow);
}
Ironic, given you started with none. I standby the response, as appropriate commentary.
> IDK what "good money" means,
I don't know either, but that's irrelevant to the topical subject of comparison (not equivocating over 10% here or there in difference).
> Again, offputting.
That is often the case, when you are demonstrably wrong and have to deal with the realization.
> This is super offputting because you're taking on an extremely condescending tone and haven't even bothered to do the research yourself.
The income of Cargill offset by costs is not 114 billion. That's just gross. It has a fraction of that income as opposed to the incomparable bank nets.
> Wait. This is literally exactly the point I was trying to make in my original comment.
You failed and started with talking about how blue collar workers are fine and comparisons to white collar management is unfair, which is frustratingly disingenuous. Good luck with whatever.