Skip to content

Instantly share code, notes, and snippets.

@mihneawalker
Created May 29, 2016 01:02
Show Gist options
  • Save mihneawalker/5077053c591c05d45e322a89ea23143e to your computer and use it in GitHub Desktop.
Save mihneawalker/5077053c591c05d45e322a89ea23143e to your computer and use it in GitHub Desktop.
freecodecamp
function getIndexToIns(arr, num) {
arr.sort(function (a,b){
return a-b;
});
console.log(arr);
for (var i=0; i < arr.length; i++)
{
if (num <= arr[i] )
{
console.log("winner is ", i);
return i;
}
}
return i;
}
getIndexToIns([40, 60], 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment