Skip to content

Instantly share code, notes, and snippets.

@ihorkatkov
Created July 23, 2015 12:41
Show Gist options
  • Save ihorkatkov/141795d02a20d76e2ad5 to your computer and use it in GitHub Desktop.
Save ihorkatkov/141795d02a20d76e2ad5 to your computer and use it in GitHub Desktop.
[JS] Поиск в массиве
function find(arr, value) {
var i;
var searchFalse = -1;
for (i = 0; i<arr.length; i++) {
if (arr[i] === value) {
return i;
}
}
return searchFalse;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment