You have an array of numbers and you need to find the maximum value. How would you accomplish this using JavaScript?

  • Math.max(...array)
  • array.max()
  • Math.maximum(array)
  • maxValue(array)
To find the maximum value in an array in JavaScript, you can use the spread operator (...) along with Math.max(). This allows you to find the maximum value easily. The correct option is a concise and common approach.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *