I'm currently trying to let JavaScript generate a truth table for a boolean function. Given a function, the code should just list all boolean combinations possible, with the function output from each combination.
As for generating all combinations, I put this together (simplified to the combinations code only):
var table = [];
function combinations(current) {
var current = current || [];
if(current.length === 3) {
table.push(current);
} else {
var c = copy(current);
c.push(true);
combinations(c);
c = copy(current);
c.push(false);
combinations(c);
}
}
function copy(a) {
var r = [];
for(var i = 0; i < a.length; i++) r.push(a[i]);
return r;
}
combinations(); // now table consists of each pair of 3 boolean values
So basically when it has reached a combination (i.e. current.length === 3), it pushes a result record to table. I was wondering, however, whether this is the recommended way of storing results of a recursive function.
I faced the recommendation of using return inside the recursive function, but how would one implement such a thing - i.e., if combinations in the end has to return an array containing all elements, how is it possible to do so? I could, of course, just use return table in the end, but I'm actually looking for a way to do this all inside the function, without an external variable like now.
So, how do I make combinations return the results as an array without using an external variable?