Created
January 26, 2021 23:00
-
-
Save kamilklkn/8c359b679494fcfc2c589739e33d783f to your computer and use it in GitHub Desktop.
Bir dizedeki tüm benzersiz elementleri bulmak için kullanılır.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const uniqueElements = arr => [...new Set(arr)]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment