feat(maxValue): implementa function

This commit is contained in:
Cainã Milech 2022-10-28 17:56:18 -03:00
parent 875ec1b8d7
commit 1db8a79f3b

View File

@ -1,4 +1,6 @@
export function maxValue(values) {
// implementar logica aqui
if(values.length === 0){
return 0;
}
return Math.max.apply(null, values);
}