Skip to content

Instantly share code, notes, and snippets.

@DeividSaenz
Created December 9, 2012 23:51
Show Gist options
  • Save DeividSaenz/4247559 to your computer and use it in GitHub Desktop.
Save DeividSaenz/4247559 to your computer and use it in GitHub Desktop.
Encontrar numero entre X y Y (VERSION 2.1)
function buscarDesdeHasta(desde,X){
var posicion = x - desde;
return posicion;
}
// Sólo funciona si el arreglo va a estar ordenado
// No crea ningún arreglo
// Demasiado sencillo :S
@f3rn8nd0
Copy link

Deivid, no se si me confundo, pero en Arduino por lo menos, si a un valor lo llamas X (en mayúsculas) y luego lo llamas x en minúscula no lo entiende.

De modo que quedaría así.

Chrome console________________________
function buscarDesdeHasta(desde,x){
var posicion = x - desde;
return posicion;
}

undefined------
buscarDesdeHasta(5,10)
5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment