i need program in which you enter words via the keyboard or file and then they come out sorted by length using javascript
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You should take a look at the array sort method. You can use it and pass in a function that performs the sorting based on whatever criteria you like. |
|||
|
|
|
The sort method takes a function as a parameter:
|
|||
|
|
|
Here's an example on how to Sort an Array in Javascript |
|||
|
|