我有一个日期函数问题,将我的每个日期变成一个字符串,有人可以告诉我如何将日期连接起来而不将日期转换为字符串,这是我的代码:
var date = new Date();
var day = date.getDate();
var month = date.getMonth();
var year = date.getFullYear();
console.log(day + '/' + month + '/' + year);
and this is my result: "23/5/2016"
but the answer l am looking for is this: 23/5/2016
有人可以帮忙吗。
答案 0 :(得分:0)
你的代码很好,你喜欢的方式,我认为你只是有点困惑。此代码字面上给出了预期结果alert()
。像这样
var date = new Date();
var day = date.getDate();
var month = date.getMonth();
var year = date.getFullYear();
document.write(day + '/' + month + '/' + year);