Jump to content

Main public logs

Combined display of all available logs of Drywall Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:45, 7 January 2026 Jlebeau81 talk contribs created page Sort Strings (Created page with "<h1>sort words in alphabetical order</h1> // take input const string = prompt('Enter a sentence: '); // converting to an array const words = string.split(' '); // sort the array elements words.sort(); // display the sorted words console.log('The sorted words are:'); for (const element of words) { console.log(element); }")