min Summary Returns the lowest number from the specified range of values. Signatures Click on a signature to select it and view its documentation. public static int min(...int values) public static double min(...double values) Usage public static int min(...int values) public static double min(...double values) Returns The lowest number from the specified inputs. The lowest number from the specified inputs. Parameters values The range of values. Parameters values The range of values. Description Returns the lowest number from the specified range of values. Returns the lowest number from the specified range of values. Examples Basic Usage 123import System; Console.log(Math.min(2, 5, 1, 3)); // 1 Basic Usage 123import System; Console.log(Math.min(2.2d, 5.5d, 1.1d, 3.3d)); // 1.1 Share HTML | BBCode | Direct Link