Skip to content
Advertisement

How do I print the highest value in a class?

Let’s say I have a class for a game I’m making and I need to print the highest value out of five individuals. How would I do that? for example

JavaScript

How would I get it to print the highest value for health instead of just printing the individual values?

Advertisement

Answer

Iterate over each villan and check if it’s the largest

JavaScript
Advertisement