Question after run test

why
The server could not be reached and your progress may not be saved.

after run
function checkPositive(arr) {
// Only change code below this line
return arr.every((value)=>{
return value>0;
});
// Only change code above this line
}

checkPositive([1, 2, 3, -4, 5]);

Probably just a glitch. Might be the server (or your connection at that time). Try it again later.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.