Hacker News new | ask | show | jobs
by thomasfoster96 4182 days ago
The built in sorting algorithm (apparently it's mergesort in most browsers) in most implementations of JavaScript is often a little bit slow, so more sorting algorithms that people have implemented is a good thing. (I actually implemented Quicksort in Javascript and got about 5x better performance than Chrome's sort algorithm)
1 comments

Yup! You should wrap Quicksort in a node module and PR us to add it to the list :)
I might clean the code up and do that! :)