Skip to content

Instantly share code, notes, and snippets.

@iamamit-107
Created May 9, 2020 16:21
Show Gist options
  • Save iamamit-107/49f01bb50f00f3c07eab0089e89cea63 to your computer and use it in GitHub Desktop.
Save iamamit-107/49f01bb50f00f3c07eab0089e89cea63 to your computer and use it in GitHub Desktop.
function linearSearch(arr, item) {
for (const element of arr) {
if (element === item) {
return "Found";
}
}
return "Not Found";
}
console.log(linearSearch([10, 15, 20, 30], 30));
//output: Found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment