You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function find (list, f) {
const { length } = list
let index = 0
let value
while (index < length) {
value = list[index++]
if (f(value, index, list)) {
return value
}
}
}