我创建了一个简单的JS方法来反转字符串。但是,当我执行代码时,我会在警报框中以UndeclarednoynaCUndeclared的形式获得输出。有人能告诉我我在这里做错了什么吗? var len = str.length; var rev= str[i] + rev; alert(rev);Reverse(&
我希望将目标字符串"Soup base vegetarian no msg "解析为一个["Soup", "base", "vegetarian", "no msg"]数组,因此基本上按空格解析,除非空格跟随我在下面尝试的单词"no",结果不完全正确:console.log(test.split(/([^no]\s)/g));
我在Javascript中创建了一个函数来翻转字符串的字母。我正在使用多指针技术来接近它。 // Start at the front and swap it with the back // Do this until we get to the center
let tail = 0; console.log(res