我们需要编写一个 JavaScript 字符串函数,该函数接收一个搜索字符串,并松散地检查其使用的字符串中是否存在搜索字符串。该函数应考虑以下标准:它应循环遍历搜索查询字母并检查它们是否以相同的顺序出现在字符串中。例如 -('a haystack with a needle').fuzzySearch('hay sucks'); // false ('a haystack with a needle').fuzzySearch('sack hand'); // true示例const fuzzySearch = function (query) { const str = this.toLowerCase(); let i = 0, n = -1, l; query = query.toLowerCase(); for (; l ... 阅读更多