Skip to content

Instantly share code, notes, and snippets.

@olalonde
Created June 14, 2013 19:36
Show Gist options
  • Save olalonde/5784602 to your computer and use it in GitHub Desktop.
Save olalonde/5784602 to your computer and use it in GitHub Desktop.
or: function (operands) {
var res;
while (operands.length > 1) {
res = operands.shift().or(operands);
}
return res;
},
and: function (operands) {
var res;
while (operands.length > 1) {
res = operands.shift().and(operands);
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment