我们需要编写一个JavaScript函数来计算数组中所有唯一项。该函数应返回一个对象,该对象代表数组中每个唯一元素的计数。
因此,让我们为该函数编写代码-
为此的代码将是-
const arr = ["hi", "hello", "hi"]; const countUnique = arr => { const counts = {}; for (var i = 0; i < arr.length; i++) { counts[arr[i]] = 1 + (counts[arr[i]] || 0); }; return counts; }; console.log(countUnique(arr));
输出结果
控制台中的输出将为-
{ hi: 2, hello: 1 }