javascript 密码生成器在回答所有提示后显示NaN,我错过了什么?[已关闭]

zfycwa2u  于 2023-01-29  发布在  Java
关注(0)|答案(1)|浏览(117)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
16小时前关门了。
Improve this question
我做错什么了?
https://github.com/MarcusShelle/Password-generator.git此处是指向我的应用程序的链接

iqjalb3h

iqjalb3h1#

不能使用+运算符将数组组合在一起。这会导致randomCharacters变量转换为字符串而不是数组。请尝试使用concat方法处理数组:

if (confirmLowerCase) { 
    console.log(confirmLowerCase);
    randomCharacters = randomCharacters.concat(lowerCase);
    console.log(randomCharacters);
}

这将允许将项添加到randomCharacters数组中,以便使用它们生成密码。

相关问题