Skip to content

Instantly share code, notes, and snippets.

@alan2207
Created July 17, 2015 21:19
Show Gist options
  • Select an option

  • Save alan2207/5acc5740f80fce534a43 to your computer and use it in GitHub Desktop.

Select an option

Save alan2207/5acc5740f80fce534a43 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
}
console.log(n)
}
}
where([40, 60], 50);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment