Finding the minimum value of a nested object property
Posted: 23 Nov 2020, 07:31
I have a nested object in JavaScript that looks like this:
I want to find the minimum value of the 'mission' property within the nested objects.
How can I do that in a simple way?
Code: Select all
const yo = {
one: {
value: 0,
mission: 17},
two: {
value: 18,
mission: 3},
three: {
value: -2,
mission: 4},
}
How can I do that in a simple way?