# Date.timestamp_millis ## Function Reads the millisecond-level Unix timestamp of the current Date. ## Syntax ```bt date_value.timestamp_millis() ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | Int | Returns a Unix timestamp in milliseconds. | ## Code Example ```bt result = date().from_timestamp(1).timestamp_millis() // Output: 1000 ``` ## Notes - To read the millisecond part of the current second, use millis().