The Math.min() function returns the smallest of zero or more numbers. min() is a static method of Math, you always use it as Math.min(), rather than as a method of a Math object you created (Math is not a constructor). If no arguments are given, the result is Infinity. If at least one of arguments cannot be converted to a number, the result is NaN. Syntax Math.min([value1,value2,...]); Example Math.min(20,50,36,2); //2 Math.min(-3,3,0,99); //-3 Example Program:- (Editor) Editor is Loading... Output:- Advertisement