code.js : fabriquer courriel avec chaîne (@xxx) donnée

This commit is contained in:
Jean-Christophe Engel 2024-07-01 10:48:35 +02:00
parent 61cc9886dc
commit 59d8265b13

11
code.js
View File

@ -303,3 +303,14 @@ function getCourriel(tab)
}
}
return getCourriel(${lescourriels})
// fabriquer un courriel qui contient une chaîne (@xxx) donnée
function homonyme(chaine, lg) {
let chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
let str = '';
for (let i = 0; i < lg; i++) {
str += chars.charAt(Math.floor(Math.random() * chars.length));
}
return str + chaine + ".fr";
}
return homonyme(${courriel_cherche}, 9);