मान लीजिए, हमें एक जावास्क्रिप्ट फ़ंक्शन लिखना है जो एक स्ट्रिंग लेता है और एक नई स्ट्रिंग देता है जिसमें शब्दों को उनकी बढ़ती लंबाई के अनुसार पुनर्व्यवस्थित किया जाता है।
उदाहरण
निम्नलिखित कोड है -
const str = 'This is a sample string only'; const arrangeByLength = str => { const strArr = str.split(' '); const sorted = strArr.sort((a, b) => { return a.length - b.length; }); return sorted.join(' '); }; console.log(arrangeByLength(str));
आउटपुट
कंसोल में आउटपुट निम्नलिखित है -
a is This only sample string