easy
a27c982e-30dd-4666-80d5-8d4b8e60b7c0Find Maximum in Array
Problem
Given an array [3, 7, 2, 9, 5], find and print the maximum value without using Math.max.
Sample output
9
arrays
Your solution — run it, use AI if stuck
javascript
Given an array [3, 7, 2, 9, 5], find and print the maximum value without using Math.max.
9