Skip to content

Instantly share code, notes, and snippets.

@alan2207
Created July 17, 2015 21:30
Show Gist options
  • Save alan2207/cedb1f118ffaffa351ab to your computer and use it in GitHub Desktop.
Save alan2207/cedb1f118ffaffa351ab to your computer and use it in GitHub Desktop.
function where(arr, num) {
// Find my place in this sorted array.
for (var i = 0;i<arr.length;i++){
if (arr[i]<num && arr[i+1]>num){
var n = i+1
return n
}else if(arr[i]==num){
return i
}
}
}
where([40, 60], 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment