Skip to content

Instantly share code, notes, and snippets.

@tamunoibi
Created April 7, 2018 19:50
Show Gist options
  • Save tamunoibi/b18671fdc1cb01d923620a08d0279ae7 to your computer and use it in GitHub Desktop.
Save tamunoibi/b18671fdc1cb01d923620a08d0279ae7 to your computer and use it in GitHub Desktop.
tests
function isIsogram(word){
if (word === "") {
return false;
} else {
return !/(\w).*\1/i.test(word);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment