Skip to content

Instantly share code, notes, and snippets.

@omeroot
Last active October 30, 2015 09:38
Show Gist options
  • Select an option

  • Save omeroot/09770dc98e5d082e5105 to your computer and use it in GitHub Desktop.

Select an option

Save omeroot/09770dc98e5d082e5105 to your computer and use it in GitHub Desktop.
var array = [];
function addElement(element){
for(var i = array.length ; i>0 && element <= array[i-1] ; --i){
array[i] = array[i-1];
}
array[i] = element;
}
addElement(5);// array => [5]
addElement(2);// array => [2,5]
addElement(6);// array => [2,5,6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment