web prog challenge 2 08.09.2021

node v14.20.1
version: 3.0.0
endpointsharetweet
exports.endpoint = function(request, response) { var today = new Date().toLocaleDateString('en-GB', { day : '2-digit', month : '2-digit', year : 'numeric', hour: '2-digit', minute: '2-digit', second: '2-digit' }).replace(',', '').split('/').join('.'); let result = 'Andrej Deriabin ' + today; console.log(result); response.end(result); }
Loading…

no comments

    sign in to comment