“Stellen Sie fest, ob Array Lodash Duplikate hat” Code-Antworten

Stellen Sie fest, ob Array Lodash Duplikate hat

function hasDuplicates(a) {
  return _.uniq(a).length !== a.length; 
}

var a = [1,2,1,3,4,5];
var b = [1,2,3,4,5,6];

document.write(hasDuplicates(a), ',',hasDuplicates(b));
Embarrassed Echidna

Lodash Count Duplikate in Array

const data = ["apple", "banana", "apple", "orange", "grapes", "mango", "banana"];

const result = _.values(_.groupBy(data)).map(d => ({name: d[0], count: d.length}));

console.log(result);
Difficult Dunlin

Ähnliche Antworten wie “Stellen Sie fest, ob Array Lodash Duplikate hat”

Fragen ähnlich wie “Stellen Sie fest, ob Array Lodash Duplikate hat”

Weitere verwandte Antworten zu “Stellen Sie fest, ob Array Lodash Duplikate hat” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen