为此提前道歉(并提前感谢) - 我确定是我,但如果可能,我会非常感谢其他一些观点。
Repl.it有许多JS课堂测试 - 经过2周的学习,我认为我在开始时为了它而开始...无论如何当我运行我的&#39 ;答案'反对他们的内置测试的代码,它们都失败了...尽管看起来满足测试。这是我的代码
function doYouPlayTheTheremin(name){
var str = name;
if (str.charAt(0) === 'S' || str.charAt(0) === 's') {
return (str + ' plays the Theremin!');
}
else {
return (str + ' does not play the Theremin!');
}
}
repl.it失败如下:
这些测试失败了: returns_a_string_value returns_proper_string_if_1st_char_is_an_S returns_proper_string_if_1st_char_is_an_s returns_proper_string_when_1st_char_is_not_an_s
当我查看详细信息标签时,它说: 测试失败 你的程序执行时间太长。 确保它没有等待输入,并且没有无限循环。
有人能告诉我这里哪里出错了??? 提前致谢!! 垫
答案 0 :(得分:0)
Repl.it的首席执行官 - 这是一个现在修复的错误 - 抱歉。