JavaScript Sets
Introduction
A [[https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global\_Objects/Set]\[Set]] is a collection of unique elements.
Example
const arr = [5, 1, 5, 7, 7, 5];
const unique = [...new Set(arr)]; // [ 5, 1, 7 ]