我正在尝试进行 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"]
我做了它想要的,为什么我被卡住了?
梵蒂冈之花
相关分类