development #11
@ -1,4 +1,8 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
let maxV = Math.max(...values);
|
||||
if(!values.length){
|
||||
maxV = 0;
|
||||
}
|
||||
return maxV;
|
||||
}
|
Loading…
Reference in New Issue
Block a user