firebase timestamp code example
Example 1: firebase timestamp to date react
Add toDate();
created_at.toDate()
Example 2: timestamp firebase
// Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
long millis = System.currentTimeMillis();
Timestamp timestamp =
Timestamp.newBuilder()
.setSeconds(millis / 1000)
.setNanos((int)(millis % 1000 * 1_000_000))
.build();