Skip to content

Instantly share code, notes, and snippets.

@kamilklkn
Created January 26, 2021 23:00
Show Gist options
  • Save kamilklkn/8c359b679494fcfc2c589739e33d783f to your computer and use it in GitHub Desktop.
Save kamilklkn/8c359b679494fcfc2c589739e33d783f to your computer and use it in GitHub Desktop.
Bir dizedeki tüm benzersiz elementleri bulmak için kullanılır.
const uniqueElements = arr => [...new Set(arr)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment