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