Question: JavaScript: // If key is in list, returns the first index where // key is located within list; otherwise returns -1. function linearSearch(list, key) {

JavaScript: 

// If key is in list, returns the first index where

// key is located within list; otherwise returns -1.

function linearSearch(list, key) {

for (var i = 0; i

if (list[i] == key) {

return i;

}

}

return -1;

}

Desk Check

list


key


i


return


28.1

20

23.6

0

15


23.6






[0]

[1]

[2]

[3]

[4]









Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!