gpt4 book ai didi

javascript - 如何将字符串插入新数组?

转载 作者:行者123 更新时间:2023-12-02 18:17:03 25 4
gpt4 key购买 nike

我是 JavaScript 新手,正在阅读 www.codeacademy.com 上的教程。我正在尝试将字符串插入新数组,但是当我运行代码时出现错误说

“哎呀,再试一次!看起来您的第二个“for”循环没有将值推送到命中数组。请确保它正常工作并且 myWord 文本出现在文本变量中的某处。 “

我查看了代码,但不知道问题出在哪里?

var someText = "This is some text and i am trying to push this text into a new string containing the string text.";

var myWord = "text";

var hits = [];

for (var i = 0; i < someText.length; i++) {
if (someText[i] === myWord[0]) {
for (var j = i; j < someText[i] + myWord.length; j++) {
hits = [];
hits.push("text");
hits[0]; //equals 'text'

}
}
}

有什么想法可以让它发挥作用吗?

最佳答案

您在每次迭代时重置点击

删除循环中的 hits = []

关于javascript - 如何将字符串插入新数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19184004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com