我对这个函数有一个问题,只有整数除外,我需要它只接受在 2-15 个字符之间有效的字符串吗?感谢任何帮助。
function getDescription() {
var Description = [];
Description = prompt("Enter the description: ", "");
while (!(Description >= 2 && Description <= 15))
{
Description = prompt("Error! The description must be between (2 - 15) characters in length.\nEnter the description: ", "");
}
return Description;
}
getDescription()
编辑:我认为我遇到的另一个问题是我输入的是它实际上是作为数组存储在描述中的吗?