UNPKG

189 BJavaScriptView Raw
1const array = require('extra-array');
2
3var x = [-2, -3, 1, 4];
4array.bubbleSort(x);
5
6array.bubbleSort(x, (a, b) => Math.abs(a) - Math.abs(b));
7
8array.bubbleSort(x, null, v => Math.abs(v));