You have already completed these exercises!
Do you want to take them again?
You completed the JS Array iteration Exercises from W3Schools.com
Share on:
Consider the following code:const x = [45, 4, 9, 16, 25];let y = x.every(myfunc);function myfunc(val) { return val > 20;}What will the result of the y?
const x = [45, 4, 9, 16, 25];let y = x.every(myfunc);function myfunc(val) { return val > 20;}
y
[45, 25]
false
[]
NaN