bobule sort in js code example

Example 1: boble sorting javascript

function bubbleSort(array) {
	for (let i = 0; i < array.length; i++) {
		for (let j = 0; j < array.length; j++) {
			let item = array[j];

			var nextItem = array[j + 1];
			if (item > nextItem) {
				array[j] = nextItem;
				array[j + 1] = item;
			}
		}
	}
	return array;
}

console.log(bubbleSort([9, 5, 7, 1, 0, 2, 4, 10, 1, 6, 3, 5, 8]));
console.log(bubbleSort([900, 5, 70, 0.1, 0, 02, 4, 100, 1, 6, 35, 56, 8]));

Example 2: buble sort in js

let bubbleSort = (inputArr) => {    let len = inputArr.length;    for (let i = 0; i < len; i++) {        for (let j = 0; j < len; j++) {            if (inputArr[j] > inputArr[j + 1]) {                let tmp = inputArr[j];                inputArr[j] = inputArr[j + 1];                inputArr[j + 1] = tmp;            }        }    }    return inputArr;};