I want to show or hide the link depending on whether less than a month is left in the month using moment.js, but I'm not sure if this is the right way.
Currently, I ...
if (moment().endOf('month')<=(13, 'days'))
{
//do link stuff here
}
... but I don't think this is the right way to do this. It does nothing anyway. Can anyone give me any directions? Thanks in advance.
source
share