I have a function that I am trying to get to format the date and time or just the date at the moment.
function(){
                              var d = new Date();
                              var n = d.getTime();
                              return 'VZW Dfill - ' + n;}
What I have tried
function(){
                              var d = new Date();
                              return 'VZW Dfill - ' + d;}
This returns
VZW Dfill - Thu Jan 30 2020 103924 GMT-0500 (Eastern Standard Time)
I would like the format to be 2020JAN30
I have also tried the following but this does not work
function(){
                              var d = new Date('YYYYMDD');
                              return 'VZW Dfill - ' + d;}
The above breaks the function.
Any help is appreciated.
 
     
    