console.log(strip('w3resource '));

function strip(str)
{
   
    var temp = str.split(' ').sort();
    temp.shift();
   
    return temp.join('')
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: