- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含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此处是指向我的应用程序的链接
1条答案
按热度按时间iqjalb3h1#
不能使用
+
运算符将数组组合在一起。这会导致randomCharacters
变量转换为字符串而不是数组。请尝试使用concat方法处理数组:这将允许将项添加到
randomCharacters
数组中,以便使用它们生成密码。