Skip to content

Instantly share code, notes, and snippets.

@eengineergz
Created February 27, 2021 04:58
Show Gist options
  • Save eengineergz/e98354b287ce2f80da4ab943399eb555 to your computer and use it in GitHub Desktop.
Save eengineergz/e98354b287ce2f80da4ab943399eb555 to your computer and use it in GitHub Desktop.
function search(array, term) {
for (let i = 0; i < array.length; i++) {
if (array[i] === term) {
return i;
}
}
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment