Reputation: 91
How can i convert below date to firebase timestamp format ??
Date
22-May-2005
Upvotes: 3
Views: 2339
Reputation: 430
You can simply use the following line:
var myTimestamp = firebase.firestore.Timestamp.fromDate(new Date());
.fromDate is a static method from the static Timestamp class from Firebase.
Upvotes: 3