write a function that takes a list of numbers and returns the largest number in the list if no integers return 0 javascript code example
Example 1: get largest number in array javascript
const array1 = [1, 3, 2];
Math.max(...array1);
// expected output: 3
Example 2: jsx return greatest number between two numbers
Math.max(5, 10);