timestamp convert date
Last updated
current_time = 1706069489000 // January 23, 2025 04:51:29
// Convert to different formats
date = current_time.timestamp("to-date") // "2025-01-23"
time = current_time.timestamp("to-time") // "04:51:29"
full = current_time.timestamp("to-full") // "2025-01-23 04:51:44"
relative = current_time.timestamp("to-relative") // "8 seconds ago"
// Using in UI
text "Date: " + date 10
text "Time: " + time 10
text "Full: " + full 10
text "Posted: " + relative 10