Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aceqbaceq/9ab44d16fa594f2ab74cf5264d9af6c9 to your computer and use it in GitHub Desktop.
Save aceqbaceq/9ab44d16fa594f2ab74cf5264d9af6c9 to your computer and use it in GitHub Desktop.
function asdf(a,b) {
for (var i=0; i < a.length; i++) {
if ( a[i] === b ) {
return i;
};
};
return -1;
};
var ar;
ar=[];
ar= ["test", 12, 12, 1.5, 17];
result = asdf (ar,100);
alert (result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment