Showing: 1 - 3 of 3 Articles

Important Moment.js functions for JavaScript

Below are some very important functions that you will need while working with timestamp or date in JavaScript. // returns current timestamp const set_current_timestamp = function() { returnmoment().format(‘X’); }; // converts timestamp to date // pass timestamp in function const getDateFormatFromTimeStamp = function(dt) { returnmoment.unix(dt).format(‘MM/DD/YYYY’); }; …