在JavaScript中 - 显示一个字符串乘以变量

时间:2017-05-06 05:26:11

标签: javascript

我想显示一些空格字母=我从数组中拉出的随机字母的字母数。

这是一个班级项目的刽子手游戏。我有随机拉出的单词和该单词中的字母数量,但试图使用我已分配该数字的变量也证明有点棘手。

任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:0)

您可以尝试以下代码:

// The array of words you have
var $words = [
    'Totidem',
    'Pugnabant',
    'Calidis',
    'Circumfluus',
    'Formaeque'
];
// Pick a random array index
var $idx = Math.floor( Math.random() * $words.length );
// Get the word in the index equal to $idx
var $word = $words[$idx];
// Generate the repeated string. In case you like to display a different
// character, replace the `.join(" ")` with the character you need. For 
// example `.join("_")` or `.join("_=_")`
var $repeated_string = Array( 1 + $word.length).join(" ")