forked from M3-Academy/challenge-algorithms-v2.0
feat: 03-maxValue
This commit is contained in:
parent
7f6f041de4
commit
9bc83bd4cb
@ -1,4 +1,10 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
var maiorNumero = 0;
|
||||
if (values.length <1) {
|
||||
maiorNumero = 0;
|
||||
} else {
|
||||
maiorNumero = Math.max.apply(Math,values) ;
|
||||
}
|
||||
return maiorNumero;
|
||||
}
|
Loading…
Reference in New Issue
Block a user