我正在尝试进行 Lambda 挑战,输出是它所要求的,但仍然不正确?问题是:“修改函数以将给定的字符串转换为数组,其中数组中的每个字符都在与字符串中相同的索引中,然后返回它。”function convertStringToArray(s) {var output = Array.from("hello");return output;}/* Do not modify code below this line */const exampleString = 'hello';const stringAsArray = convertStringToArray(exampleString);console.log(stringAsArray, '<-- should be ["h", "e", "l", "l", "o"]');输出["h", "e", "l", "l", "o"] <-- should be ["h", "e", "l", "l", "o"]我做了它想要的,为什么我被卡住了?
1 回答
梵蒂冈之花
TA贡献1900条经验 获得超5个赞
您的代码采用s
- 它忽略的参数。
我高度怀疑 lambda 挑战正在将不同的值传递给您的函数(仅用"hello"
作示例)并且您的代码失败,因为它仅["h", "e", "l", "l", "o"]
在s
is时才返回"world"
。
尝试在函数的第一行使用s
而不是"hello"
。
添加回答
举报
0/150
提交
取消