Answers for "max value in javascript"

17

max value in array javascript

// For large data, it's better to use reduce. Supose arr has a large data in this case:
const arr = [1, 5, 3, 5, 2];
const max = arr.reduce((a, b) => { return Math.max(a, b) });

// For arrays with relatively few elements you can use apply: 
const max = Math.max.apply(null, arr);

// or spread operator:
const max = Math.max(...arr);
Posted by: Guest on November-27-2020
13

math.max in javascript

Math.max() function returns the largest of the zero or more numbers given as input parameters.
Math.max(1,10,100); // return 100
Posted by: Guest on December-31-2020
0

find max value in javascript

Math.max() function returns the largest of the zero or more numbers given as input parameters.
Math.max(1,10,100); // return 100
Posted by: Guest on January-01-1970

Code answers related to "Javascript"

Browse Popular Code Answers by Language