Skip to content

Instantly share code, notes, and snippets.

@alpgul
Last active March 22, 2018 16:48
Show Gist options
  • Save alpgul/a997b763ba8e30c199e39257059863e8 to your computer and use it in GitHub Desktop.
Save alpgul/a997b763ba8e30c199e39257059863e8 to your computer and use it in GitHub Desktop.
Linear Search with Javascript
function linear_search(array,value){
for (var i in array)
{
if(array[i]==value)
{
console.log(i) ;
return;
}
}
}
let arr=[1,2,3,4,5];
linear_search(arr,3);
@alpgul
Copy link
Author

alpgul commented Mar 22, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment