forked from M3-Academy/challenge-algorithms-v2.0
feat: Algoritmo 03-maxValue - finalizado
This commit is contained in:
parent
5923dc23db
commit
753a4a9c77
@ -1,4 +1,7 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
if(values.length === 0){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Math.max(...values);
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user