Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 290 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 290 Bytes

quicksort-js

This is a functional approach to implement the quicksort algorithm in JavaScript.

As a result of ES5/ES6 Feature the implementation is pretty short.

  • Array.prototype.reduce (ES5)
  • Destructuring of Arrays (ES6)
  • Array Spread Operator (ES6) and
  • Arrow Functions (ES6)