# Math.ceil ## Function Round up. Returns the smallest integer greater than or equal to value. ## Syntax ```bt Math.ceil(value) ``` ## Parameters | Parameters | Type | Required | Default value | Description | | ------ | ------ | ------ | ------ | ------ | | value | Number | Yes | None | The number that participates in rounding. | ## Return value | Type | Description | | ------ | ------ | | Int/Float | Returns the smallest integer greater than or equal to value. An Int is returned for integer results, and a Float for non-integer or non-finite results. | ## Example ```bt result = Math.ceil(1.2) // Output: 2 print result ``` ## Notes - Integer results return Int.