fearNotLetter("abce")
should return "d".
testString: 'assert.deepEqual(fearNotLetter(''abce''), ''d'', ''fearNotLetter("abce")
should return "d".'');'
- text: fearNotLetter("abcdefghjklmno")
should return "i".
testString: 'assert.deepEqual(fearNotLetter(''abcdefghjklmno''), ''i'', ''fearNotLetter("abcdefghjklmno")
should return "i".'');'
- text: fearNotLetter("stvwx")
should return "u".
testString: 'assert.deepEqual(fearNotLetter(''stvwx''), ''u'', ''fearNotLetter("stvwx")
should return "u".'');'
- text: fearNotLetter("bcdf")
should return "e".
testString: 'assert.deepEqual(fearNotLetter(''bcdf''), ''e'', ''fearNotLetter("bcdf")
should return "e".'');'
- text: fearNotLetter("abcdefghijklmnopqrstuvwxyz")
should return undefined.
testString: 'assert.isUndefined(fearNotLetter(''abcdefghijklmnopqrstuvwxyz''), ''fearNotLetter("abcdefghijklmnopqrstuvwxyz")
should return undefined.'');'
```