Q:

isogram

const isIsogram = str => {
  str = str.toLowerCase().split('')
  let dupArr = [...new Set(str)]
  return dupArr.join('').length === str.join('').length
}
console.log(isIsogram("Dermatoglyphics"))
0

Related

New to Communities?

Join the community