Write a function that returns the smallest number that’s greater or equal to 0. Especially that return right underneath if (num < 0). What's that return's job here?
function minNonNegative(numArray) {
let min = Infinity;
numArray.forEach(function(num) {
if (num < 0) {
return;
} else if (num < min) {
min = num
}
});
return min;
}
console.log(minNonNegative([-3,2,5,-9]))
Aucun commentaire:
Enregistrer un commentaire