Let’s say, we are required to write a JavaScript function that takes in a string and returns a new string with words rearranged according to their increasing length.
Example
Following is the code −
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));
Output
Following is the output in the console −
a is This only sample string