Skip to content

Instantly share code, notes, and snippets.

@MiCkEyZzZ
Last active June 18, 2021 08:19
Show Gist options
  • Save MiCkEyZzZ/6c9335a7e559cd5c2d5f0d2ebf8c383d to your computer and use it in GitHub Desktop.
Save MiCkEyZzZ/6c9335a7e559cd5c2d5f0d2ebf8c383d to your computer and use it in GitHub Desktop.
Linear search implementation
function linearSearch(array, element) {
for (let i = 0; i < array.length; i++) {
if (array[i] === element) {
return i
}
}
return null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment