About 6,170,000 results
Open links in new tab
  1. Array.prototype.sort () - JavaScript | MDN

    Jul 20, 2025 · The sort() method of Array instances sorts the elements of an array in place and returns the reference to the same array, now sorted. The default sort order is ascending, built upon …

  2. SORT Definition & Meaning - Merriam-Webster

    The meaning of SORT is a group set up on the basis of any characteristic in common : class, kind. How to use sort in a sentence. Synonym Discussion of Sort.

  3. JavaScript Array sort () Method - W3Schools

    Description The sort() method sorts the elements of an array. The sort() method sorts the elements as strings in alphabetical and ascending order. The sort() method overwrites the original array.

  4. Sort - Wikipedia

    Sort may refer to: Sorting, any process of arranging items in sequence or in sets Sorting algorithm, any algorithm for ordering a list of elements Mainframe sort merge, sort utility for IBM mainframe systems …

  5. SORT | English meaning - Cambridge Dictionary

    SORT definition: 1. a group of things that are of the same type or that share similar qualities: 2. the type of…. Learn more.

  6. JavaScript's sort()method: From basics to custom sorting - LogRocket …

    Mar 7, 2025 · Discover how to sort arrays in JavaScript using sort () and toSorted (), including customization and language-sensitive sorting techniques.

  7. Sort - definition of sort by The Free Dictionary

    1. To place or arrange according to class, kind, or size; classify: sorted the books into boxes by genre. See Synonyms at arrange. 2. To separate from others: sort the wheat from the chaff.

  8. JavaScript Array sort: Sorting an Array More Effectively

    The sort() method allows you to sort elements of an array in place. It changes the positions of the elements in the original array and returns the sorted array.

  9. SORT definition and meaning | Collins English Dictionary

    If you talk about a particular sort of something, you are talking about a class of things that have particular features in common and that belong to a larger group of related things.

  10. Sorting Techniques — Python 3.14.2 documentation

    2 days ago · Python lists have a built-in list.sort() method that modifies the list in-place. There is also a sorted() built-in function that builds a new sorted list from an iterable.