-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathisogram.js
22 lines (19 loc) · 974 Bytes
/
isogram.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Write a program that checks if a word supplied as the argument is an Isogram. An Isogram is a word in which no letter occurs more than once.
// Create a method called is_isogram that takes one argument, a word to test if it's an isogram. This method should return a tuple of the word and a boolean indicating whether it is an isogram.
// If the argument supplied is an empty string, return the argument and False: (argument, False). If the argument supplied is not a string, raise a TypeError with the message 'Argument should be a string'.
const isIsogram = (str) => {
if (str === ''){ return false; } else
if (typeof str !== 'string'){ return 'Argument should be a string';}
let word = str.split('');
for (let i = 0, j = 1; i < word.length - 1; i++, j++) {
if (word[i] == word[j]){
console.log('This is not an Isogram');
return false;
}
}
console.log('This is a Isogram');
return true;
}
isIsogram("isaac");
isIsogram("isac");
isIsogram(34);