DSA_1
const nemo= ['nemo']
const large = new Array(10).fill('nemo');
function findNemo(arr){
let t0 = performance.now()
arr.forEach(e => {
e == 'nemo' ?console.log('found nemo') : null
})
console.log(performance.now()-t0)
}
findNemo(large)
INFO