mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-07 02:05:08 +08:00
search/ (#143)
This commit is contained in:
@ -6,7 +6,7 @@
|
|||||||
*/
|
*/
|
||||||
function SearchArray (searchNum, ar) {
|
function SearchArray (searchNum, ar) {
|
||||||
var position = Search(ar, searchNum)
|
var position = Search(ar, searchNum)
|
||||||
if (position != -1) {
|
if (position !== -1) {
|
||||||
console.log('The element was found at ' + (position + 1))
|
console.log('The element was found at ' + (position + 1))
|
||||||
} else {
|
} else {
|
||||||
console.log('The element not found')
|
console.log('The element not found')
|
||||||
@ -16,7 +16,7 @@ function SearchArray (searchNum, ar) {
|
|||||||
// Search “theArray” for the specified “key” value
|
// Search “theArray” for the specified “key” value
|
||||||
function Search (theArray, key) {
|
function Search (theArray, key) {
|
||||||
for (var n = 0; n < theArray.length; n++) {
|
for (var n = 0; n < theArray.length; n++) {
|
||||||
if (theArray[n] == key) { return n }
|
if (theArray[n] === key) { return n }
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user