Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                
              
            
!

CSS

              
                
              
            
!

JS

              
                const unsortedArray = [23, 1, 4, 5, -123, 2, 0, 0, 01, 71, 10, 2];
const sortedArray = bubbleSort(unsortedArray);

console.log(sortedArray);

function bubbleSort(array) {

	// Use an isSorted flag to determine whether or not there
	// is more sorting to do when we are in the while loop
	let isSorted = false;

	while(!isSorted) {

		// Mark is sorted true, then re-mark it false in the loop.
		// If the loop is finished, then isSorted will stay true
		// and we will thus exit the while loop and return
		isSorted = true;

		for(let i = 0; i < array.length - 1; i++) {
			if(array[i] > array[i+1]) {
				// Swap by holding the first element in a temp variable,
				// then reassigning indexes i and i+1 to each other
				let temp = array[i];
				array[i] = array[i + 1];
				array[i + 1] = temp;

				// Mark the isSorted flag false because there is still sorting to do if we are in the loop
				isSorted = false;
			}
		}
	}
	// Return the sorted array!
	return array;
}
              
            
!
999px

Console