javascript-algorithms
javascript-algorithms copied to clipboard
Could we have just one way of doing the swapping to have better consistency across the code
Like how we have here https://github.com/trekhleb/javascript-algorithms/blob/master/src/algorithms/sorting/bubble-sort/BubbleSort.js#L22 instead of https://github.com/trekhleb/javascript-algorithms/blob/master/src/algorithms/sorting/shell-sort/ShellSort.js#L24
The former makes use of ES6 destructuring whilst the latter does not. I think the question is whether ES6 is recommended in this project
I feel that this project is trying to use modern language standards. I support the use of ES6 destructuring.
Hi, we are four students working on this issue as part of a course in software development.