हमें एक JavaScript फ़ंक्शन लिखने की आवश्यकता है जो केवल इनपुट के रूप में एकल वर्णमाला लेता है। फ़ंक्शन को उस वर्णमाला की स्थिति की गणना शुरू से करनी चाहिए और एक वर्णमाला वापस करनी चाहिए जो उसी स्थिति में है लेकिन पीछे से है।
उदाहरण
इसके लिए कोड होगा -
const alpha = 'g'; const findCounterPart = (alpha = '') => { let alphabet = 'abcdefghijklmnopqrstuvwxyz'; let firstpart = alphabet.substring(0,13).split(''); let secondpart = alphabet.substring(13).split('').reverse(); let solution = ''; if (firstpart.indexOf(alpha) !== −1) { solution = secondpart[firstpart.indexOf(alpha)]; } else { solution = firstpart[secondpart.indexOf(alpha)]; }; return solution; }; console.log(findCounterPart(alpha));
आउटपुट
और कंसोल में आउटपुट होगा -
t