JavaScript max value code example

Example 1: javascript int max

console.log(Number.MAX_SAFE_INTEGER);
// expected output: 9007199254740991

Example 2: js maximum number value

Number.MAX_VALUE;

Example 3: js max value of array

let numbers = [4, 13, 27, 0, -5]; // Get max value of an array in Javascript

Math.max.apply(null, numbers); // returns 27

Example 4: 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

Example 5: javascript max number

MAX_SAFE_INTEGER = 9007199254740991

Example 6: find max value in javascript

x = findMax(1, 123, 500, 115, 44, 88);

function findMax() {
  var i;
  var max = -Infinity;
  for (i = 0; i < arguments.length; i++) {
    if (arguments[i] > max) {
      max = arguments[i];
    }
  }
  return max;
}