challenge-algorithms-v2.0-F.../03-maxValue/index.js

13 lines
236 B
JavaScript
Raw Normal View History

export function maxValue(values) {
// implementar logica aqui
if(values.length === 0){
return 0;
}
let maior = values[0];
values.map(element =>{
if (element > maior)
maior = element;
});
return maior;
}