A quick note about this including my solution, Heroes. This is one of those issues where I originally tried a more complex set of calculations outside of an if statement. Truth be told, this ended up being a lesson in simplicity. Using the return statement, this ended up being my HELPER.JS
export const oneWillDo = (x, y, z) => {
return x + y + z >= 1;
}
Basically, this uses the mathematical equivalent of true and false (0 and 1) and say that any combination of those values would create a mathematical construct that was 1 or more for all truthy statements. I would say I'm about 85% sure of it, but the autograder said it was good to go.
TTFN,
GM