Skip to content

search/linearSearch.js #143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Search/linearSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
function SearchArray (searchNum, ar) {
var position = Search(ar, searchNum)
if (position != -1) {
if (position !== -1) {
console.log('The element was found at ' + (position + 1))
} else {
console.log('The element not found')
Expand All @@ -16,7 +16,7 @@ function SearchArray (searchNum, ar) {
// Search “theArray” for the specified “key” value
function Search (theArray, key) {
for (var n = 0; n < theArray.length; n++) {
if (theArray[n] == key) { return n }
if (theArray[n] === key) { return n }
}
return -1
}
Expand Down