Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.36 KB

README.md

File metadata and controls

19 lines (15 loc) · 1.36 KB

sort-hat.js

An online JavaScript sorting application, made to calculate the time taken for an ascending sort over a randomly generated dataset with an user specified range.

Sorting used

  • Chrome: JavaScript V8 Chromium engine uses TimSort as of Sept' 2018 for sorting contiguous numeric arrays with Arrays.sort()
  • Mozilla: Mozilla Firefox uses MergeSort with JavaScript's Arrays.sort()

Time calculation

Hosting

Further readings