我希望使用日期polyfill mentioned here at MDN:
if (!Date.now) {
Date.now = function now() {
return new Date().getTime();
};
}
感觉非常密集,但我如何将其变为变量?我试过了:
function get_date_string(){
if (!Date.now) {
Date.now = function() { return new Date().getTime(); }
}
}
var ds = get_date_string();
答案 0 :(得分:3)
以这种方式使用:
if (!Date.now) {
Date.now = function now() {
return new Date().getTime();
};
}
var ds = Date.now();