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

Auto Save

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 quickSort = function(array) {

	if(array.length <= 1) return array;

	// Pick a swap position about in the middle of the array
	let swapIndex = Math.floor((array.length - 1)/2),		lessArray = [],
			moreArray = [];

	// Get the value of the swap index for comparison
	let swapValue = array[swapIndex];

	// Remove the swap value from the array we will be sorting
	array.splice(swapIndex, 1);

	// If the value is less than swapValue, put in a "less than" array
	// If the value is more than swapValue, put in a "more than" array
	for (let i = 0; i < array.length; i++) {
		if(array[i] < swapValue) {
			lessArray.push(array[i]);
		} else {
			moreArray.push(array[i]);
		}
	}

	// Combine the sorted arrays with the original pivot value and return
	return(quickSort(lessArray).concat([swapValue], quickSort(moreArray)));
};

const array = [9012134, 7, 5, 11, 12, 2, 14, 3, 1111, 221,33, 4,111,33,99999,0,2,344,22,99, 10, 6];

console.log("Array after sorting: " + quickSort(array));

              
            
!
999px

Console