Jul 28, 2017 · 1 min read
Create a funtion called isIsogram that takes one argument, a word to test if it’s an isogram. This function should return a boolean indicating whether it is an isogram (true) or not (false).
Example:
isIsogram("Dermatoglyphics")Expected result:
true