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]);
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]);
Isn’t there a link in that message that points to support@freecodecamp.org? we can’t help in the forum