Skip to content

Instantly share code, notes, and snippets.

@tin80122
Created August 19, 2019 06:49
Show Gist options
  • Save tin80122/71abdd48f0c5e7feee6b77e7d33b88b9 to your computer and use it in GitHub Desktop.
Save tin80122/71abdd48f0c5e7feee6b77e7d33b88b9 to your computer and use it in GitHub Desktop.
var firstUniqChar = function(s) {
for(let w of s){
if(s.indexOf(w) === s.lastIndexOf(w))
return s.indexOf(w);
}
return -1;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment