这是全文:
编写一个程序,该程序以相反的顺序返回单词以设置字符串(方法参数)。食谱被认为是由任意数量的乏味字符或标点符号分隔的字母组。生成的字符串中应包含空格字符,以便保持句子的结构,同时可以将多个连续的平淡字符替换为一个。
第一个资源应以大写字母开头。除句子的第一句外,所有其他单词应保留其初始形式。
这是我的代码所在的地方
"use strict"
function reverseString(word) {
word = word.split('');
let reverseWord = word.reverse();
reverseWord = reverseWord.join('');
return reverseWord;
}
console.log(reverseString("Agree with you, the council does. Your apprentice, Skywalker will be. Be will Skywalker, apprentice your. Does council the, you with agree."));