これは、各ビンの識別ショートコードを生成する jsbin の関数です。
function shortcode() {
var vowels = 'aeiou',
consonants = 'bcdfghjklmnpqrstvwxyz',
word = '', length = 6, index = 0, set;
for (; index < length; index += 1) {
set = (index % 2 === 0) ? vowels : consonants;
word += set[Math.floor(Math.random() * set.length)];
}
return word;
}
それはいくつの異なる組み合わせを生み出すことができますか? よく計算すると、26 文字 (az) のセットから 6 文字を使用すると、3.08915776e+8 通りの組み合わせがあります。しかし、「ecamit」、「izafij」、「erowih」、「avimog」などの記憶可能なショートコードを生成するために、5 (母音) のセットと 21 (子音) のセットが交互にあるため、これはどのように計算されるのでしょうか...
それは (5x21)^3 = 121,550,625 でしょうか?