vote up 1 vote down star

Please consider the following function body:

var isValidated = true;
$(selector1).each(function(){
    //do validation with local f()...
    isValidated = f() && isValidated;
});

$(selector2).each(function(){
    //do validation with local f()...
    isValidated = f() && isValidated;
});

$(selector3).each(function(){
    //do validation with local f()...
    isValidated = f() && isValidated;
});

return isValidated;

My description of the progress of isValidated is Boolean concatenation---but there has to be an official, computer-science term for this thing. What is it? To clarify, the idea here is to let each $() block run---but when any one of these blocks have a validation failure the results of this failure must return false over all blocks (true && true && false == false). So, like many programmers, I am using some kind of a pattern but we often don't know what it is called. So does this pattern resemble anything useful?

flag

67% accept rate

3 Answers

vote up 10 vote down check

Boolean Logic. (and look at the "chaining operations" section).

link|flag
1  
+1 for George Boole! – Ben S Nov 6 at 20:12
3  
Also of interest: Short-circuit evaluation: en.wikipedia.org/wiki/Short-circuit_evaluation/… – Ben S Nov 6 at 20:15
Okay: so this could also be called Boolean chaining... – rasx Nov 6 at 20:47
vote up 2 vote down

Not sure if this is a named pattern per se, but I just wanted to point out a minor observation... Since you are just returning boolean, it would be better to switch your checks so that after the first failure the logic will simply short circuit as false without running additional functions unnecessarily:

isValidated = isValidated  && f();

The only reason to ensure you still run every f() is if they are doing something like marking UI fields with errors for the user. If they are simply validating, no need to run them once the outer check is false.

link|flag
@bmoeskau you are correct: every f() must run for marking UI fields... – rasx Nov 6 at 20:48
1  
if your functions are both performing the validation and marking the UI, they're doing too many things. Those are separate concerns. – rmeador Nov 6 at 21:06
vote up 1 vote down

I'm assuming from your use of .each() that you also have access to an .inject() function, which is what I'd recommend using when you're building a single value from an enumerable.

function validated(a) {
  return a.inject(true, function(acc, el){ return(acc && f()); });
}

return validated($(selector1)) && validated($(selector2)) && validated($(selector3));
link|flag
@mattgillooly.com: I like your approach here because it avoids sharing a variable like isValidated among different functions... – rasx Nov 6 at 20:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.