Files
30-seconds-of-code/snippets/isDuplicates.md
2020-10-04 16:16:30 +03:00

460 B

title, tags
title tags
hasDuplicates array,beginner

Checks if there are duplicate values in a flat array.

  • Use Set() to get the unique values in the array.
  • Use Set.prototype.size and Array.prototype.length to check if the count of the unique values is the same as elements in the original array.
const hasDuplicates = arr => new Set(arr).size !== arr.length;
hasDuplicates([0,1,1,2]); // true
hasDuplicates([0,1,2,3,]); // false