我们需要编写一个 JavaScript 函数,它接收一个字符串并返回一个新字符串,其中仅包含原始字符串中出现次数超过一次的单词。例如:如果输入字符串为 -const str = "big black bug bit a big black dog on his big black nose";那么输出应为 -const output = "big black";示例让我们为这个函数编写代码 -const str = "big black bug bit a big black dog on his big black nose"; const findDuplicateWords = str => { const strArr = str.split(" "); const res ... 阅读更多
我们需要编写一个 JavaScript 函数,它接收一个字符串并返回一个新字符串,其中包含原始字符串的所有字符,只是删除了空格。示例让我们为这个函数编写代码 -const str = "This is an example string from which all whitespaces will be removed"; const removeWhitespaces = str => { let newStr = ''; for(let i = 0; i < str.length; i++){ if(str[i] !== " "){ newStr += str[i]; }else{ newStr += ''; }; }; return newStr; }; console.log(removeWhitespaces(str));输出删除空格后控制台中的输出 -Thisisanexamplestringfromwhichallwhitespaceswillberemoved