Skip to content

Instantly share code, notes, and snippets.

@masterfermin02
Created December 7, 2018 15:42
Show Gist options
  • Save masterfermin02/452797b09735e071b6b9b2277793b4bf to your computer and use it in GitHub Desktop.
Save masterfermin02/452797b09735e071b6b9b2277793b4bf to your computer and use it in GitHub Desktop.
/*
* @param1 = string
* return boolean
*/
function isUniqueCharater(str){
return str.length === new Set(str).size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment