查找 JavaScript 中出现频率第二高的字符
我们需要编写一个 JavaScript 函数,该函数接收一个字符串,并返回在字符串中出现频率第二高的字符。
因此,让我们为此函数编写代码 −
示例
代码如下 −
const str = 'Hello world, I have never seen such a beautiful weather in the world'; const secondFrequent = str => { const map = {}; for(let i = 0; i < str.length; i++){ map[str[i]] = (map[str[i]] || 0) + 1; }; const freqArr = Object.keys(map).map(el => [el, map[el]]); freqArr.sort((a, b) => b[1] - a[1]); return freqArr[1][0]; }; console.log(secondFrequent(str));
输出
控制台中的输出为 −
e
广告