Indagamos por distintos espacios para traerte la respuesta para tu inquietud, si continúas con dificultades déjanos un comentario y contestamos porque estamos para ayudarte.
Ejemplo 1: objeto obtener propiedad con javascript de valor máximo
var obj =a:1, b:2,undefined:1;Object.keys(obj).reduce((a, b)=>(obj[a]> obj[b])? a : b);
Ejemplo 2: valor máximo array de objeto javascript
Math.max(...arr.map(o=> o.value));
Ejemplo 3: obtener objeto con javascript de valor máximo
let objects =[id:0, votes:5,id:1, votes:3,id:2, votes:11]let maxObj = objects.reduce((max, obj)=>(max.votes> obj.votes)? max : obj);/* `max` is always the object with the highest value so far.
* If `obj` has a higher value than `max`, then it becomes `max` on the next iteration.
* So here:
* | max = id: 0, votes: 5, obj = id: 1, votes: 3
* | max = id: 0, votes: 5, obj = id: 2, votes: 11
* reduced = id: 2, votes: 11
*/
Eres capaz de apoyar nuestro estudio dejando un comentario o dejando una valoración te estamos eternamente agradecidos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)