About 2,400,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 …

  2. Sort data in a range or table in Excel - Microsoft Support

    How to sort and organize your Excel data numerically, alphabetically, by priority or format, by date and time, and more.

  3. 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.

  4. JavaScript's sort()method: From basics to custom sorting

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

  5. 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 …

  6. JavaScript Array sort: Sorting an Array More Effectively

    This tutorial shows you how to use the JavaScript array sort method to sort arrays of numbers, strings, and objects.

  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. 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.

  9. std:: sort - cppreference.com

    Feb 10, 2025 · Introsort can handle all cases with O (N·log (N)) comparisons (without incurring additional overhead in the average case), and thus is usually used for implementing sort ().

  10. Sorting Techniques — Python 3.14.2 documentation

    19 hours ago · In this document, we explore the various techniques for sorting data using Python. A simple ascending sort is very easy: just call the sorted() function. It returns a new sorted list: …