We're a place where coders share, stay up-to-date and grow their careers.
Another way to group conditions is to group them in arrays where
for all conditions: [conditionsToCheck].every(x => x)
for at least one: [conditionsToCheck].some(x => x)
Yes, we can use it.
More optimized way.
Another way to group conditions is to group them in arrays where
for all conditions: [conditionsToCheck].every(x => x)
for at least one: [conditionsToCheck].some(x => x)
Yes, we can use it.
More optimized way.