我们需要编写一个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