Answers for "js find combinations"

0

JavaScript function that generates all combinations of a string.

function combu(s){
var buff = [];
var res = [];
for (i=0;i<s.length;i++){
    buff = [s[i]];
    var index=0;
    while(res[index]){
        buff.push(''+res[index]+s[i]);
        index++;
    }
    res = res.concat(buff);
}
return res;
}

combu('abc');
Posted by: Guest on August-06-2020

Code answers related to "js find combinations"

Code answers related to "Javascript"

Browse Popular Code Answers by Language