--- id: af7588ade1100bde429baf20 title: Пропущені літери challengeType: 1 forumTopicId: 16023 dashedName: missing-letters --- # --description-- Знайдіть пропущену літеру в переданому діапазоні літер та поверніть її. Якщо у діапазоні наявні всі літери, поверніть `undefined`. # --hints-- `fearNotLetter("abce")` має повертати рядок `d`. ```js assert.deepEqual(fearNotLetter('abce'), 'd'); ``` `fearNotLetter("abcdefghjklmno")` має повертати рядок `i`. ```js assert.deepEqual(fearNotLetter('abcdefghjklmno'), 'i'); ``` `fearNotLetter("stvwx")` має повертати рядок `u`. ```js assert.deepEqual(fearNotLetter('stvwx'), 'u'); ``` `fearNotLetter("bcdf")` має повертати рядок `e`. ```js assert.deepEqual(fearNotLetter('bcdf'), 'e'); ``` `fearNotLetter("abcdefghijklmnopqrstuvwxyz")` має повертати `undefined`. ```js assert.isUndefined(fearNotLetter('abcdefghijklmnopqrstuvwxyz')); ``` # --seed-- ## --seed-contents-- ```js function fearNotLetter(str) { return str; } fearNotLetter("abce"); ``` # --solutions-- ```js function fearNotLetter (str) { for (var i = str.charCodeAt(0); i <= str.charCodeAt(str.length - 1); i++) { var letter = String.fromCharCode(i); if (str.indexOf(letter) === -1) { return letter; } } return undefined; } ```