TheFreedomChaser
Established Member
- Impact
- 58


function generatePairs(keywords) {
let pairs = [];
for (let i = 0; i < keywords.length; i++) {
for (let j = 0; j < keywords.length; j++) {
if (i !== j) {
pairs.push(keywords[i] + keywords[j] + ".com");
}
}
}
return pairs;
}
// Example usage
let myKeywords = ["apple", "food", "house", "road"];
let wordPairs = generatePairs(myKeywords);
console.log(wordPairs);
To test generating names you could paste it into https://jsfiddle.net/ in the JavaScript box and hit Run on the upper left.Thanks @AEProgram this is really interesting. I only have basic knowledge of programming and unfortunately even less when it comes to using it in the application of domaining. If I was to use the JS code approach, where would I execute it?
function generatePairs(keywords) {
let resultString = "";
for (let i = 0; i < keywords.length; i++) {
for (let j = 0; j < keywords.length; j++) {
if (i !== j) {
resultString += keywords[i] + keywords[j] + ".com\n";
}
}
}
return resultString.trim();
}
let myKeywords = ["apple", "food", "house", "road"];
let wordPairs = generatePairs(myKeywords);
console.log(wordPairs);
I use https://domainpunch.com/dnaIs there software out there (free or paid) that allows you to feed thousands of keywords into it, and generate all combinations of two-word combinations from these keywords and check their availability for non-premium purchase?



