Skip to content

Instantly share code, notes, and snippets.

View thexdev's full-sized avatar
🧬
Experiment

M. Akbar Nugroho thexdev

🧬
Experiment
View GitHub Profile
@thexdev
thexdev / bubblesort.algo.js
Last active October 7, 2019 04:44
Bubble sorting algorithm in JavaScript
/**
* Bubble sorting algorithm in JavaScript.
*
* Here i'm using arrow function and ES6, but you can use native function and ES5 instead.
*
* @param {array} arr Unsorted Array
* @return {array}
*/
const bubbleSort = arr => {
let swapped;