Every line of 'javascript today' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
43 function getToday(){ 44 var date = new Date() 45 var day = pad(date.getDate()) 46 var month = pad((date.getMonth()+1)) 47 var year = date.getFullYear() 48 return month + '/' + day + '/' + year 49 }