how to Change the suffix in moment js from 2 hours ago to 2h

Viewed 24

I'm working on a project and I am using momentjs for my date formatting

the momentjs time fromNow function returns a date like 2 hours ago

I need it to just return 2h instead of 2 hours

any help?

2 Answers

Well you achieve it with some tweaks like

const today = moment();
const someday = moment('2022-09-21 10:00Z');

const diff = today.diff(someday, 'hours');

this will return you the number only and you can, later on, append an 'h' to it like

diff+'h';

use string replace

 string.replace('hours', 'h');
Related