Arooshi
Arooshi

Reputation: 91

How do I convert a Date to Firebase Timestamp

How can i convert below date to firebase timestamp format ??

Date

22-May-2005

Upvotes: 3

Views: 2339

Answers (1)

HEMAL
HEMAL

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.

Ref: Firebase Timestamp Doc

Upvotes: 3

Related Questions