--- title: "min" excerpt: "Computes the minimum of the given arguments." layout: manual --- Computes the minimum of the given arguments. ```js min(args: [number]) -> number ``` ### Examples ```js const myVar = min(4, 5, 6) ``` ### Arguments * `args`: `[number]` (REQUIRED) ### Returns `number`