Monday, June 21, 2021

OIC JS - return today's date in yyyymmdd format

 Js codes:

function returnMultiPeriodDate(){

var today = new Date();

var dd = today.getDate();

var mm = today.getMonth() + 1;

var yyyy = today.getFullYear();

if (dd <10){

dd = '0' + dd;

}

if (mm < 10) {

mm = '0' + mm;

}

today = yyyy + '0' + mm;

return today;

}


Note:

today = yyyy + mm + dd; 

No comments:

Post a Comment

Featured Post

OIC - Restrictions on Using Stage File Action Operations with the File/Attachment Features of the Connectivity Agent

Restrictions on Using Stage File Action Operations with the File/Attachment Features of the Connectivity Agent When configuring the stage fi...