如何使用Mozilla DevNet日期polyfill javascript

时间:2015-01-06 18:14:33

标签: javascript

我希望使用日期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();

1 个答案:

答案 0 :(得分:3)

以这种方式使用:

if (!Date.now) {
  Date.now = function now() {
    return new Date().getTime();
  };
}

var ds = Date.now();