समस्या
हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो एक स्ट्रिंग लेता है जिसमें ठीक दो शब्द होते हैं।
हमारे फ़ंक्शन को एक नई स्ट्रिंग का निर्माण और वापसी करनी चाहिए जिसमें शब्दों का पहला अक्षर एक दूसरे के साथ इंटरचेंज किया जाता है।
उदाहरण
निम्नलिखित कोड है -
const str = 'hello world'; const interchangeChars = (str = '') => { const [first, second] = str.split(' '); const fChar = first[0]; const sChar = second[0]; const newFirst = sChar + first.substring(1, first.length); const newSecond = fChar + second.substring(1, second.length); const newStr = newFirst + ' ' + newSecond; return newStr; }; console.log(interchangeChars(str));
आउटपुट
कंसोल आउटपुट निम्नलिखित है -
wello horld