function to determine an isogram in Javascript code example Example: isogram javascript function isIsogram(str){ return !str.match(/([a-z]).*\1/i); }