I\'m pulling a timestamp from a Firestore database, and I only want to display the date to the user. The original timestamp is
Timestamp(seconds=1555477200,
Simply use moment.js and use your required format
date = moment(); console.log(date.format("MMMM D, YYYY"));