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
what’s your questions please?
please can you help me to know what went wrong to my account all progress can’t be saved
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.