Bubble Sort (Implementation)

(Reading time: 4 minutes)

We'll cover the following...

We need to create a function that receives the array as an argument.

Press + to interact
function bubbleSort(array) {
}

Next, it’s important to know whether we should swap at all. If the array has already been ...