forked from M3-Academy/challenge-algorithms-v2.0
feat(03-triagleArea)executa exercicio 3
This commit is contained in:
parent
27ab01513a
commit
797e1de18a
@ -1,4 +1,8 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
if(values.length === 0){
|
||||
return values = 0
|
||||
} else{
|
||||
return Math.max.apply(null, values);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user