私はjavascript、node.js、およびexpressに非常に慣れていません。私の質問は、次のコードをリファクタリングして関数内の 1 行にする方法を教えてください。
exports.about = function(req, res){
var mytime = new Date();
res.render('about', {title: 'about page', time: mytime.toLocaleDateString() });
};
つまり、var mytime = new Date(); を圧縮する方法はありますか? と時間: mytime.toLocalDateString() を1つのステートメントに?