function find_max(nums) { 2 let max_num = Number.NEGATIVE_INFINITY; // smaller than all other numbers for (let num of nums) { if (num > max_num) { // (Fill in the missing line here) } } return max_num; code example

Example: javascript negative infinity

// Using this will gives lowest possible starting point.
// It is useful when initiating a variable that will be compared against negative numbers.
Number.NEGATIVE_INFINITY // Or,
-INFINITY

// The opposite is INFINITY. The largest possible starting point.
Number.POSITIVE_INFINITE // Or,
INFINITY