Skip to content

Instantly share code, notes, and snippets.

@X-Raym
Created November 8, 2024 08:38
Show Gist options
  • Save X-Raym/1e9ee4c50791ed067640ced22371ae6f to your computer and use it in GitHub Desktop.
Save X-Raym/1e9ee4c50791ed067640ced22371ae6f to your computer and use it in GitHub Desktop.
String to array of unique characters JavaScript
function StrToUniqueCharactersArr(str) {
str = str.split("") // Array of chars from str
let set = new Set(str) // Set of unique values from array
return [...set] // Convert set to array
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment